Add delphi integration, fix search showing plugins

This commit is contained in:
Jai A
2025-01-08 22:06:05 -08:00
parent adf3d9540d
commit 8e754cfeb5
7 changed files with 99 additions and 30 deletions

View File

@@ -61,11 +61,6 @@ pub async fn project_search(
let facets: Option<Vec<Vec<String>>> = if let Some(facets) = info.facets {
let facets = serde_json::from_str::<Vec<Vec<String>>>(&facets)?;
// These loaders specifically used to be combined with 'mod' to be a plugin, but now
// they are their own loader type. We will convert 'mod' to 'mod' OR 'plugin'
// as it essentially was before.
let facets = v2_reroute::convert_plugin_loader_facets_v3(facets);
Some(
facets
.into_iter()