Fix software versions comparison, now, if version higher than latest on git, no error thrown

This commit is contained in:
Theo 2023-07-09 19:40:08 -07:00
parent 8527be370c
commit 0c33fcd54d

@ -127,7 +127,7 @@ export class HealthService {
const lastVersion =
(await fetch('https://api.github.com/repos/tornadocash/tornado-relayer/releases').then((res) => res.json()))[0]?.tag_name ||
this.config.version;
const isUpToDate = compareVersions(this.config.version, lastVersion) === 0;
const isUpToDate = compareVersions(this.config.version, lastVersion) >= 0;
if (!isUpToDate) {
await this.pushAlert({
type: 'VERSION_UPDATE_WARN',