A simple, clean, fast browser for the AtmosphereConf(2026) VODs
0
fork

Configure Feed

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

fix: avoid premature deep-link metadata fetch on cold loads

jack 0fdcddf8 6f1ceaeb

+6 -1
+6 -1
src/pages/video-page.tsx
··· 70 70 return 71 71 } 72 72 73 + if (talksLoading) { 74 + setMetadataLoading(false) 75 + return 76 + } 77 + 73 78 const alreadyInCatalog = talks.some((item) => item.uri === resolvedUri) 74 79 if (alreadyInCatalog) { 75 80 setResolvedTalk(null) ··· 102 107 return () => { 103 108 active = false 104 109 } 105 - }, [resolvedUri, talks]) 110 + }, [resolvedUri, talks, talksLoading]) 106 111 107 112 useEffect(() => { 108 113 if (!resolvedUri || !videoRef.current) {