From dafa8087ec2962fff4e97793bbf7ff8f84429043 Mon Sep 17 00:00:00 2001 From: MeowcaTheoRange Date: Thu, 22 Feb 2024 14:07:12 -0600 Subject: [PATCH] I forgot to skewer the artist name --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index 1bfb172..051b235 100644 --- a/index.js +++ b/index.js @@ -91,7 +91,7 @@ async function getVideo() { const youtubeMusicVideo = musicList.find((song) => { return skewered(song.title).includes(skewered(trackData.name)) - && song.artists.some(artist => skewered(trackData.artist.name).includes(artist.name)); + && song.artists.some(artist => skewered(trackData.artist.name).includes(skewered(artist.name))); }); if (youtubeMusicVideo == null) {