pi: "update all plugins" button must update banned plugins

This commit is contained in:
goat 2024-06-16 18:21:40 +02:00
parent 1c03242aa9
commit c91e24cb58
3 changed files with 4 additions and 7 deletions

View file

@ -726,7 +726,7 @@ internal class PluginInstallerWindow : Window, IDisposable
this.loadingIndicatorKind = LoadingIndicatorKind.UpdatingAll;
var toUpdate = this.pluginListUpdatable
.Where(x => x.InstalledPlugin.IsLoaded)
.Where(x => x.InstalledPlugin.IsWantedByAnyProfile)
.ToList();
Task.Run(() => pluginManager.UpdatePluginsAsync(toUpdate, false))