Revamp the pop-up player modal

This commit is contained in:
Lei Nelissen
2022-05-10 23:52:58 +02:00
parent 37ead0ec98
commit b21766a352
21 changed files with 295 additions and 131 deletions

View File

@@ -67,8 +67,6 @@ function DownloadManager () {
return;
}
console.log(ids);
/**
* Whenever the store is cleared, existing downloads get "lost" because
* the only reference we have is the store. This function checks for
@@ -94,7 +92,7 @@ function DownloadManager () {
dispatch(completeDownload({
id,
location: file.path,
size: Number.parseInt(file.size),
size: file.size,
}));
});
}