Compare commits

...

2 Commits

Author SHA1 Message Date
ostertun
fa4770e12a Merge branch 'hotfix/remote_logout' 2020-10-16 13:01:24 +02:00
ostertun
a6f2568753 gitflow-hotfix-stash: remote_logout 2020-10-16 13:01:06 +02:00
2 changed files with 7 additions and 2 deletions

View File

@@ -910,7 +910,12 @@ function sync() {
}
} else {
log("[db] Something went wrong (HTTP " + code + ")");
if (code == 401) {
log("[db] Auth invalid. Logout initiated");
logoutClearStorage();
} else {
log("[db] Something went wrong (HTTP " + code + ")");
}
syncOkay = false;
syncInProgress = 0;
}

View File

@@ -1,5 +1,5 @@
<?php
define('PWA_VERSION', '1.11h1');
define('PWA_VERSION', '1.11h2');
?>