web: fix logout

This commit is contained in:
Thomas Mathews 2022-12-22 08:05:20 -08:00
parent 48ebf9c978
commit ab2ced247b

View file

@ -162,7 +162,7 @@ async function press_logout() {
if (confirm("Are you sure you want to sign out?")) { if (confirm("Are you sure you want to sign out?")) {
localStorage.clear(); localStorage.clear();
await dbclear(); await dbclear();
window.location.href = url.toString() window.location.reload();
} }
} }