From b4be591d577592fa53d39cdbb72622a0ca7aa41a Mon Sep 17 00:00:00 2001 From: James Chubbuck Date: Wed, 1 Apr 2026 17:21:52 -0700 Subject: [PATCH] Update artist.ts --- lib/routes/spotify/artist.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/routes/spotify/artist.ts b/lib/routes/spotify/artist.ts index d063693b19a8..5d8d0466ebd7 100644 --- a/lib/routes/spotify/artist.ts +++ b/lib/routes/spotify/artist.ts @@ -47,7 +47,7 @@ async function handler(ctx) { Authorization: `Bearer ${token}`, }, }); - const itemsResponse = await ofetch(`https://api.spotify.com/v1/artists/${id}/albums`, { + const itemsResponse = await ofetch(`https://api.spotify.com/v1/artists/${id}/albums?include_groups=album,single,ep,appears_on,compilation`, { method: 'GET', headers: { Authorization: `Bearer ${token}`,