diff --git a/materialious/src/routes/(app)/+layout.svelte b/materialious/src/routes/(app)/+layout.svelte index 97a5f6ab..24962019 100644 --- a/materialious/src/routes/(app)/+layout.svelte +++ b/materialious/src/routes/(app)/+layout.svelte @@ -18,10 +18,13 @@ import { authStore, darkModeStore, + feedCacheStore, instanceStore, interfaceAmoledTheme, interfaceDefaultPage, isAndroidTvStore, + playlistCacheStore, + searchCacheStore, syncPartyPeerStore, themeColorStore } from '$lib/store'; @@ -162,6 +165,9 @@ function logout() { authStore.set(null); + feedCacheStore.set({}); + searchCacheStore.set({}); + playlistCacheStore.set({}); goto('/'); }