From 06001ca16908f3b084b069b5947a7eb1cf70a149 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Tue, 9 Mar 2021 20:15:53 -0500 Subject: [PATCH] Attempt to fix blank preview URLs --- commands/games-sp/guess-song.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/commands/games-sp/guess-song.js b/commands/games-sp/guess-song.js index d3536a02..50b6fe1c 100644 --- a/commands/games-sp/guess-song.js +++ b/commands/games-sp/guess-song.js @@ -101,8 +101,7 @@ module.exports = class GuessSongCommand extends Command { if (this.cache.has(id)) return this.cache.get(id); const { body } = await request .get(`https://api.spotify.com/v1/tracks/${id}`) - .set({ Authorization: `Bearer ${this.token}` }) - .query({ market: 'us' }); + .set({ Authorization: `Bearer ${this.token}` }); const result = { id, name: body.name,