Ignore updates for most disabled plugins

This commit is contained in:
Aireil 2021-01-05 08:08:00 +01:00
parent 64e78a297d
commit 095369de0f

View file

@ -184,6 +184,10 @@ namespace Dalamud.Plugin
});
var latest = sortedVersions.Last();
if (File.Exists(Path.Combine(latest.FullName, ".disabled")) && !File.Exists(Path.Combine(latest.FullName, ".testing"))) {
continue;
}
var localInfoFile = new FileInfo(Path.Combine(latest.FullName, $"{installed.Name}.json"));
if (!localInfoFile.Exists) {