Compare commits

..

1 Commits

Author SHA1 Message Date
sarendsen
985d407891 fix: loading conditionals 2025-06-07 12:36:26 +02:00
2 changed files with 2 additions and 2 deletions

View File

@@ -36,7 +36,7 @@
},
"android": {
"jsEngine": "hermes",
"versionCode": 56,
"versionCode": 55,
"adaptiveIcon": {
"foregroundImage": "./assets/images/icon-plain.png",
"monochromeImage": "./assets/images/icon-mono.png",

View File

@@ -498,7 +498,7 @@ export default function page() {
return () => setIsMounted(false);
}, []);
if (itemStatus.isLoading || streamStatus.isLoading) {
if (itemStatus.isLoading || streamStatus.isLoading || !item || !stream) {
return (
<View className='w-screen h-screen flex flex-col items-center justify-center bg-black'>
<Loader />