From 379bebf86681494e614893c51fbce44f7587f00d Mon Sep 17 00:00:00 2001 From: mateonunez Date: Mon, 25 Nov 2024 21:08:47 +0100 Subject: [PATCH] chore: no cache Signed-off-by: mateonunez --- lib/spotify.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/spotify.js b/lib/spotify.js index eeb4f07..cc2f14f 100644 --- a/lib/spotify.js +++ b/lib/spotify.js @@ -63,6 +63,7 @@ export const getRecentlyPlayed = async () => { headers: { Authorization: `Bearer ${accessToken}`, }, + cache: 'no-cache', }); }; @@ -86,6 +87,7 @@ export const getTopArtists = async () => { headers: { Authorization: `Bearer ${accessToken}`, }, + cache: 'no-cache', }); }; @@ -109,5 +111,6 @@ export const getTopTracks = async () => { headers: { Authorization: `Bearer ${accessToken}`, }, + cache: 'no-cache', }); };