Merge pull request #622 from Aireil/fix_update

fix: continue instead of return when updating
This commit is contained in:
goaaats 2021-10-08 12:34:11 +02:00 committed by GitHub
commit 4154686f00
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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)