From 193f9c886946d85dbbcc58c3f5fa301b4eb5a880 Mon Sep 17 00:00:00 2001 From: goat Date: Sun, 26 Mar 2023 00:39:27 +0100 Subject: [PATCH] fix: orphaned plugins can never accept feedback --- .../Windows/PluginInstaller/PluginInstallerWindow.cs | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Dalamud/Interface/Internal/Windows/PluginInstaller/PluginInstallerWindow.cs b/Dalamud/Interface/Internal/Windows/PluginInstaller/PluginInstallerWindow.cs index c7847f58e..a2126089b 100644 --- a/Dalamud/Interface/Internal/Windows/PluginInstaller/PluginInstallerWindow.cs +++ b/Dalamud/Interface/Internal/Windows/PluginInstaller/PluginInstallerWindow.cs @@ -2087,7 +2087,12 @@ internal class PluginInstallerWindow : Window, IDisposable ImGui.TextColored(ImGuiColors.DalamudGrey3, downloadText); var isThirdParty = manifest.IsThirdParty; - var canFeedback = !isThirdParty && !plugin.IsDev && plugin.Manifest.DalamudApiLevel == PluginManager.DalamudApiLevel && plugin.Manifest.AcceptsFeedback && availablePluginUpdate == default; + var canFeedback = !isThirdParty && + !plugin.IsDev && + !plugin.IsOrphaned && + plugin.Manifest.DalamudApiLevel == PluginManager.DalamudApiLevel && + plugin.Manifest.AcceptsFeedback && + availablePluginUpdate == default; // Installed from if (plugin.IsDev)