Fix updates failing due to flipped WorkingPluginId check

This commit is contained in:
goaaats 2025-04-01 19:58:19 +02:00
parent 34679d085b
commit 34ca8b8f99

View file

@ -1432,8 +1432,8 @@ internal class PluginManager : IInternalDisposableService
else else
{ {
// If we are doing anything other than a fresh install, not having a workingPluginId is an error that must be fixed // If we are doing anything other than a fresh install, not having a workingPluginId is an error that must be fixed
if (inheritedWorkingPluginId != null) if (inheritedWorkingPluginId == null)
throw new InvalidOperationException("Inherited WorkingPluginId must not be null"); throw new ArgumentNullException(nameof(inheritedWorkingPluginId), "Inherited WorkingPluginId must not be null when updating");
} }
// Ensure that we have a testing opt-in for this plugin if we are installing a testing version // Ensure that we have a testing opt-in for this plugin if we are installing a testing version