1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-12-22 19:07:54 +01:00

fix: Don't check version when starting up in dev mode

This commit is contained in:
Christopher Kolstad 2021-02-19 11:16:35 +01:00
parent b83387a84a
commit c2db551252
No known key found for this signature in database
GPG Key ID: 559ACB0E3DB5538A
2 changed files with 4 additions and 1 deletions

View File

@ -54,7 +54,7 @@ class VersionService {
return {
current: this.current,
latest: this.latest || {},
isLatest: this.isLatest || false,
isLatest: this.isLatest,
};
}
}

View File

@ -16,4 +16,7 @@ unleash.start({
session: {
db: true
},
versionCheck: {
enable: false,
}
});