diff options
author | Alystrasz <contact@remyraes.com> | 2022-08-07 21:40:27 +0200 |
---|---|---|
committer | Alystrasz <contact@remyraes.com> | 2022-08-07 21:40:27 +0200 |
commit | f36176a3649a082c99afef552a87559632536e16 (patch) | |
tree | f1031648e765dbfa6e2b5a49602b3d1dbee8e6a2 /src/utils.js | |
parent | 3a8875a24cf66ff4fd6b39cfb9ce2314191f34f4 (diff) | |
download | Viper-f36176a3649a082c99afef552a87559632536e16.tar.gz Viper-f36176a3649a082c99afef552a87559632536e16.zip |
fix: lint
Diffstat (limited to 'src/utils.js')
-rw-r--r-- | src/utils.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utils.js b/src/utils.js index b5978b6..31a2b28 100644 --- a/src/utils.js +++ b/src/utils.js @@ -155,7 +155,7 @@ function handleNorthstarUpdating() { async function _checkForUpdates() { let localVersion = getNSVersion(); let distantVersion = await requests.getLatestNsVersion(); - if (distantVersion == false) return; + if (distantVersion == false) { return; } console.log(lang("cli.autoupdates.checking")); // Checks if NS is outdated |