a simple web player for subsonic tinysub.devins.page
subsonic navidrome javascript
11
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: clean all db on logout

intergrav 2b4ac696 8cb5372a

+7 -3
+7 -3
src/js/auth.js
··· 79 79 } 80 80 } 81 81 82 - // clear localStorage and reload to logout 83 - function handleLogout() { 84 - imageCache.clear(); 82 + // clear all storage and reload to logout 83 + async function handleLogout() { 84 + if (indexedDB.databases) { 85 + (await indexedDB.databases()).forEach((db) => 86 + indexedDB.deleteDatabase(db.name), 87 + ); 88 + } 85 89 localStorage.clear(); 86 90 location.reload(); 87 91 }