Remove redundant console.log

This commit is contained in:
Lei Nelissen
2022-05-18 22:00:07 +02:00
parent a9dcd75f96
commit 21eb1dca3b

View File

@@ -80,7 +80,6 @@ function DownloadManager () {
files.filter((file) => file.isFile() && file.name.endsWith('.mp3'))
.forEach((file) => {
const id = file.name.replace('.mp3', '');
console.log(id, ids.includes(id));
// GUARD: If the id is already in the store, there's nothing
// left for us to do.