I forgot to skewer the artist name

This commit is contained in:
MeowcaTheoRange 2024-02-22 14:07:12 -06:00
parent 84b41c1530
commit dafa8087ec

View file

@ -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) {