fix(PluginInstaller): feedback not showing up on up-to-date plugins

This commit is contained in:
Aireil 2022-01-28 18:11:08 +01:00
parent a4ce3d0688
commit 9129031cae

View file

@ -1433,7 +1433,7 @@ namespace Dalamud.Interface.Internal.Windows
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.Manifest.DalamudApiLevel == PluginManager.DalamudApiLevel && plugin.Manifest.AcceptsFeedback && availablePluginUpdate == default;
// Installed from
if (plugin.IsDev)