From 0be87c47008ead4aaf253569de1582774cde3870 Mon Sep 17 00:00:00 2001 From: "Navy.gif" Date: Thu, 28 Mar 2024 10:51:02 +0200 Subject: [PATCH] Fix entry --- src/client/components/downloaders/Spotify.ts | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/client/components/downloaders/Spotify.ts b/src/client/components/downloaders/Spotify.ts index 8822f3e..25f68f0 100644 --- a/src/client/components/downloaders/Spotify.ts +++ b/src/client/components/downloaders/Spotify.ts @@ -78,11 +78,12 @@ class SpotifyDownloader extends Downloader const [ , id ] = match; if (!id) throw new Error('Could not parse ID from url'); - this.logger.debug('Song ID', id); + this.logger.debug('Song ID', id); const existing = this.#getSongData(id); if (existing) { + this.logger.debug('Found existing entry for', id); const { artist, song, ext, album } = existing; return Promise.resolve({ existing: true, @@ -142,9 +143,9 @@ class SpotifyDownloader extends Downloader this.#processing = false; return reject(new Error('Got bad output from zotify (could not find file name) and could not find by ID from cache file')); } - const { file, name } = match.groups!; - fs.appendFileSync(path.join(this.downloadDir!, '.song_ids'), `${id}\t${(new Date()).toLocaleString('sv')}\t${name}\t${file}\n`); + const { file } = match.groups!; data = this.#parseFilename(file); + fs.appendFileSync(path.join(this.downloadDir!, '.song_ids'), `${id}\t${(new Date()).toLocaleString('sv')}\t${data.artist}\t${data.song}\t${file}\n`); } if (!data) return reject(new Error('Failed to find file reference'));