Skip to content

Commit

Permalink
chore: no cache
Browse files Browse the repository at this point in the history
Signed-off-by: mateonunez <mateonunez95@gmail.com>
  • Loading branch information
mateonunez committed Nov 25, 2024
1 parent 5d0e8fd commit 379bebf
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions lib/spotify.js
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ export const getRecentlyPlayed = async () => {
headers: {
Authorization: `Bearer ${accessToken}`,
},
cache: 'no-cache',
});
};

Expand All @@ -86,6 +87,7 @@ export const getTopArtists = async () => {
headers: {
Authorization: `Bearer ${accessToken}`,
},
cache: 'no-cache',
});
};

Expand All @@ -109,5 +111,6 @@ export const getTopTracks = async () => {
headers: {
Authorization: `Bearer ${accessToken}`,
},
cache: 'no-cache',
});
};

0 comments on commit 379bebf

Please sign in to comment.