aboutsummaryrefslogtreecommitdiff
path: root/src/utils.js
diff options
context:
space:
mode:
author0neGal <mail@0negal.com>2022-08-17 18:25:52 +0200
committer0neGal <mail@0negal.com>2022-08-17 18:25:52 +0200
commit1da94c96948511b3b69f82b502265735c0c005e4 (patch)
treec4dd8d040a5e86cc18fbee4cc31c513f5f8666ac /src/utils.js
parent19e3f0d2d44087036712dccf1b2b0b81b9df759a (diff)
parent5106d9ed409a3cc91a7755f961fab1bf91d8b7fb (diff)
downloadViper-1da94c96948511b3b69f82b502265735c0c005e4.tar.gz
Viper-1da94c96948511b3b69f82b502265735c0c005e4.zip
Merge branch 'main' of https://github.com/0neGal/viper
Diffstat (limited to 'src/utils.js')
-rw-r--r--src/utils.js5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/utils.js b/src/utils.js
index e8d14cc..31a2b28 100644
--- a/src/utils.js
+++ b/src/utils.js
@@ -155,6 +155,7 @@ function handleNorthstarUpdating() {
async function _checkForUpdates() {
let localVersion = getNSVersion();
let distantVersion = await requests.getLatestNsVersion();
+ if (distantVersion == false) { return; }
console.log(lang("cli.autoupdates.checking"));
// Checks if NS is outdated
@@ -361,6 +362,10 @@ async function update() {
const latestAvailableVersion = await requests.getLatestNsVersion();
console.log(latestAvailableVersion)
+ if (latestAvailableVersion == false) {
+ ipcMain.emit("ns-update-event", "cli.update.noInternet");
+ return;
+ }
// Makes sure it is not already the latest version
if (version === latestAvailableVersion) {