pass the builder provider as a fallback to the audit service

This commit is contained in:
Nils Kruthoff 2026-07-20 11:26:09 +02:00
parent 8420fc13b1
commit 0d53281d0c
No known key found for this signature in database
GPG Key ID: A5C0151B4DDB172C

View File

@ -570,7 +570,7 @@ public partial class AssistantBuilder : AssistantBaseCore<NoSettingsPanel>
this.isAuditingPlugin = true;
try
{
this.pluginAudit = await this.AssistantPluginAuditService.RunAuditAsync(this.installedAssistantPlugin);
this.pluginAudit = await this.AssistantPluginAuditService.RunAuditAsync(this.installedAssistantPlugin, fallbackProvider: this.ProviderSettings);
if (this.pluginAudit.Level is AssistantAuditLevel.UNKNOWN)
{
this.FailInstallStep(BuilderInstallStep.SECURITY_CHECK, T("The security check could not determine a result."));