From efe67045d4f0f5ca2ee9d665ff3f176444821d45 Mon Sep 17 00:00:00 2001 From: Julien Maille Date: Sun, 4 Jan 2026 00:24:37 +0100 Subject: [PATCH] IMP: faster artist loading --- js/api.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/api.js b/js/api.js index 1539758..51b5ffa 100644 --- a/js/api.js +++ b/js/api.js @@ -520,7 +520,7 @@ export class LosslessAPI { const [primaryResponse, contentResponse] = await Promise.all([ this.fetchWithRetry(`/artist/?id=${artistId}`), - this.fetchWithRetry(`/artist/?f=${artistId}`) + this.fetchWithRetry(`/artist/?f=${artistId}&skip_tracks=true`) ]); const primaryJsonData = await primaryResponse.json();