Change update check to be more accomodating

This commit is contained in:
Zack Rauen 2022-12-08 17:17:53 -05:00
parent d2a1a29d6d
commit a172baa6c8
1 changed files with 1 additions and 1 deletions

View File

@ -176,7 +176,7 @@ class AddonUpdater {
if (this.pending.includes(filename)) return;
const info = this.cache[path.basename(filename)];
if (!info) return;
const hasUpdate = info.version > currentVersion;
const hasUpdate = info.version != currentVersion;
if (!hasUpdate) return;
this.pending.push(filename);
}