diff --git a/ui/src/List/VideoList.tsx b/ui/src/List/VideoList.tsx index d249eca..81b595d 100644 --- a/ui/src/List/VideoList.tsx +++ b/ui/src/List/VideoList.tsx @@ -62,13 +62,15 @@ const VideoList = ({ } setResponse(r); }; - if (range90k != null) { + if (range90k !== null) { doFetch(abort.signal, range90k); const timeout = setTimeout(() => setShowLoading(true), 1000); return () => { abort.abort(); clearTimeout(timeout); }; + } else { + setResponse(null); } }, [range90k, snackbars, stream]);