Skip to content

Commit

Permalink
only notify about non auth errors on login
Browse files Browse the repository at this point in the history
  • Loading branch information
a-sync committed Mar 23, 2024
1 parent 0511752 commit 1b19e16
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "game-server-watcher",
"version": "3.1.8",
"version": "3.1.9",
"description": "A simple discord/telegram/slack bot that can be hosted on a free service to monitor your game servers and players in style. 😎",
"exports": "./dist/server.js",
"type": "module",
Expand Down
2 changes: 1 addition & 1 deletion public/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ $(async () => {
else notif('danger', '⚠️ Error while calling ' + endpoint, (res ? res.error : undefined), undefined, 3);
}
});
} else {
} else if (gswFeatures !== false) {
notif('danger', '⚠️ Error while loading features.');
}
});
Expand Down

0 comments on commit 1b19e16

Please sign in to comment.