IMP: faster artist loading

This commit is contained in:
Julien Maille 2026-01-04 00:24:37 +01:00
parent 87126a0fe7
commit efe67045d4

View file

@ -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();