From 9d5efdc664300cb7bd422bce83f66eb6f08c7d97 Mon Sep 17 00:00:00 2001 From: goat <16760685+goaaats@users.noreply.github.com> Date: Mon, 23 Aug 2021 15:53:35 +0200 Subject: [PATCH] fix: get icon list from PluginManager, not the filtered one from installer --- Dalamud/Interface/Internal/Windows/PluginInstallerWindow.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dalamud/Interface/Internal/Windows/PluginInstallerWindow.cs b/Dalamud/Interface/Internal/Windows/PluginInstallerWindow.cs index 578a19276..babfdcf2f 100644 --- a/Dalamud/Interface/Internal/Windows/PluginInstallerWindow.cs +++ b/Dalamud/Interface/Internal/Windows/PluginInstallerWindow.cs @@ -1478,7 +1478,7 @@ namespace Dalamud.Interface.Internal.Windows Task.Run(async () => { - var plugins = this.pluginListAvailable.Select(x => x); + var plugins = pluginManager.AvailablePlugins.Select(x => x); foreach (var pluginManifest in plugins) {