fix: trickplay and re-rendering issues

This commit is contained in:
Fredrik Burmester
2025-08-20 09:59:03 +02:00
parent e7161bc9ab
commit d795e82581
3 changed files with 152 additions and 31 deletions

View File

@@ -70,7 +70,7 @@ export const usePlaybackManager = ({
useDownload();
/** Whether the device is online. actually it's connected to the internet. */
const isOnline = netInfo.isConnected;
const isOnline = useMemo(() => netInfo.isConnected, [netInfo.isConnected]);
// Adjacent episodes logic
const { data: adjacentItems } = useQuery({