fix: include partial provider discovery fallbacks

This commit is contained in:
Shakker
2026-04-22 04:14:40 +01:00
committed by Shakker
parent ae35795c04
commit 754125947a

View File

@@ -52,6 +52,9 @@ function resolveProviderDiscoveryEntryPlugins(params: {
if (records.length === 0) {
return [];
}
if (records.length < pluginIdSet.size) {
return [];
}
const loadSource = createPluginSourceLoader();
const providers: ProviderPlugin[] = [];
for (const manifest of records) {