From 5d9e4affe48276280a0997d3df32b16ddd1572c8 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Tue, 9 Mar 2021 20:39:48 -0500 Subject: [PATCH] Fix lint --- commands/games-sp/guess-song.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/games-sp/guess-song.js b/commands/games-sp/guess-song.js index fda823d1..b6cff0cc 100644 --- a/commands/games-sp/guess-song.js +++ b/commands/games-sp/guess-song.js @@ -117,7 +117,7 @@ module.exports = class GuessSongCommand extends Command { } async fetchAlternativePreview(id) { - const { text } = await request.get(`https://open.spotify.com/embed/track/${id}`); + const { text } = await request.get(`https://open.spotify.com/embed/track/${id}`); const $ = cheerio.load(text); return JSON.parse(decodeURIComponent($('script[id="resource"]')[0].children[0].data)).preview_url; }