From 21eb1dca3b376cfc1fd1d478e4afb4619f855ca5 Mon Sep 17 00:00:00 2001 From: Lei Nelissen Date: Wed, 18 May 2022 22:00:07 +0200 Subject: [PATCH] Remove redundant console.log --- src/components/DownloadManager.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/components/DownloadManager.ts b/src/components/DownloadManager.ts index 8bd7dde..798b9b9 100644 --- a/src/components/DownloadManager.ts +++ b/src/components/DownloadManager.ts @@ -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.