fix: continue instead of return when updating

This commit is contained in:
Aireil 2021-10-08 06:34:52 +02:00
parent 47a6df074d
commit 4cfb9bbe48

View file

@ -708,7 +708,7 @@ namespace Dalamud.Plugin.Internal
{
// Can't update that!
if (plugin.InstalledPlugin.IsDev)
return null;
continue;
var result = await this.UpdateSinglePluginAsync(plugin, false, dryRun);
if (result != null)