diff options
author | Alystrasz <contact@remyraes.com> | 2022-08-06 23:13:24 +0200 |
---|---|---|
committer | Alystrasz <contact@remyraes.com> | 2022-08-06 23:13:24 +0200 |
commit | 26034ec3475a61682a17c95cb2bffdbc9e52af54 (patch) | |
tree | 5c7553bc99f429f4ea9878c997c5b724f4bae492 /src/app/main.js | |
parent | 64fb444ad72bdba342a7345644a5b55d94c7f696 (diff) | |
download | Viper-26034ec3475a61682a17c95cb2bffdbc9e52af54.tar.gz Viper-26034ec3475a61682a17c95cb2bffdbc9e52af54.zip |
feat: display a toast message if no Internet at launch
Diffstat (limited to 'src/app/main.js')
-rw-r--r-- | src/app/main.js | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/app/main.js b/src/app/main.js index 4288d1d..163c63d 100644 --- a/src/app/main.js +++ b/src/app/main.js @@ -1,6 +1,6 @@ const fs = require("fs"); const path = require("path"); -const { ipcRenderer, shell } = require("electron"); +const { ipcRenderer, shell, ipcMain } = require("electron"); const lang = require("../lang"); var modsobj = {}; @@ -62,6 +62,11 @@ if (fs.existsSync("viper.json")) { setpath(); } + +// Show a toast message if no Internet connection has been detected. +if (!navigator.onLine) + ipcRenderer.send("no-internet"); + function exit() {ipcRenderer.send("exit")} function update() {ipcRenderer.send("update")} |