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,