plex deadlock + version showing stale + "disco" screen after docker update fixes

This commit is contained in:
Harvey
2026-04-18 23:03:13 +01:00
parent 10c593b254
commit 4f4591fb96
5 changed files with 73 additions and 4 deletions
@@ -30,7 +30,8 @@ export const getVersionQuery = () =>
staleTime: CACHE_TTL.VERSION_INFO,
queryKey: VersionQueryKeyFactory.info(),
queryFn: ({ signal }) => api.global.get<VersionInfo>(API.version.info(), { signal }),
refetchOnWindowFocus: false
refetchOnWindowFocus: false,
refetchOnMount: 'always'
}));
export const getUpdateCheckQuery = () =>
+28
View File
@@ -0,0 +1,28 @@
<script lang="ts">
import { AlertTriangle, Home, RotateCw } from 'lucide-svelte';
import { page } from '$app/state';
</script>
<svelte:head>
<title>Error - MusicSeerr</title>
</svelte:head>
<div class="w-full px-2 sm:px-4 lg:px-8 py-4 sm:py-8 max-w-7xl mx-auto">
<div class="flex flex-col items-center justify-center py-20 gap-4 text-center">
<AlertTriangle class="h-16 w-16 text-error/40" />
<h1 class="text-lg font-semibold text-base-content/80">Something went wrong</h1>
<p class="text-sm text-base-content/60">
{page.error?.message ?? 'An unexpected error occurred'}
</p>
<div class="flex items-center gap-2">
<a href="/" class="btn btn-ghost btn-sm">
<Home class="h-4 w-4" />
Home
</a>
<button class="btn btn-accent btn-sm" onclick={() => location.reload()}>
<RotateCw class="h-4 w-4" />
Retry
</button>
</div>
</div>
</div>