fix: show error messages when tracks fail to download

This commit is contained in:
Lei Nelissen
2023-07-12 23:28:00 +02:00
parent 0b43c0749e
commit 2bd9cf9950
6 changed files with 61 additions and 32 deletions

View File

@@ -55,7 +55,7 @@ function DownloadManager () {
}, [queued, dispatch, activeDownloads]);
useEffect(() => {
// GUARD: We only run this functino once
// GUARD: We only run this function once
if (hasRehydratedOrphans) {
return;
}
@@ -99,7 +99,6 @@ function DownloadManager () {
setHasRehydratedOrphans(true);
}, [rehydrated, ids, hasRehydratedOrphans, dispatch]);
return null;
}