summaryrefslogtreecommitdiffstats
path: root/assets/js/meals.js
diff options
context:
space:
mode:
Diffstat (limited to 'assets/js/meals.js')
-rw-r--r--assets/js/meals.js6
1 files changed, 4 insertions, 2 deletions
diff --git a/assets/js/meals.js b/assets/js/meals.js
index e9b3af8..0f4230e 100644
--- a/assets/js/meals.js
+++ b/assets/js/meals.js
@@ -278,8 +278,10 @@ async function lopolisLogin() {
}
},
- error: () => {
- UIAlert( D("loginError"), "lopolisLogin(): ajax.error");
+ error: (xhr) => {
+ if (xhr.status !== 401) {
+ UIAlert( D("loginError"), "lopolisLogin(): ajax.error");
+ }
setLoading(false);
}
});