Change update check to be more accomodating

This commit is contained in:
2022-12-08 17:17:53 -05:00
parent e0c3d28f2f
commit 3928df65dc
+1 -1
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);
}