fix: don't show plugin as decommissioned when orphaned

This commit is contained in:
goaaats 2023-01-08 00:13:56 +01:00
parent fc9c94299f
commit 31a4f895a0
No known key found for this signature in database
GPG key ID: 49E2AA8C6A76498B

View file

@ -1991,7 +1991,7 @@ internal class PluginInstallerWindow : Window, IDisposable
}
// Out of service
if (plugin.IsDecommissioned)
if (plugin.IsDecommissioned && !plugin.IsOrphaned)
{
label += Locs.PluginTitleMod_NoService;
trouble = true;