opencode-immune 1.0.84 → 1.0.86
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/plugin/server.js +1 -1
- package/package.json +1 -1
package/dist/plugin/server.js
CHANGED
|
@@ -5463,7 +5463,7 @@ function compareHarnessVersions(localVersion, releaseVersion) {
|
|
|
5463
5463
|
if (!local || !release) return null;
|
|
5464
5464
|
if (local.dateKey < release.dateKey) return -1;
|
|
5465
5465
|
if (local.dateKey > release.dateKey) return 1;
|
|
5466
|
-
if (local.suffix !== release.suffix) return
|
|
5466
|
+
if (local.suffix !== release.suffix) return -1;
|
|
5467
5467
|
return 0;
|
|
5468
5468
|
}
|
|
5469
5469
|
async function downloadHarnessAsset(assetUrl, token) {
|