IMP: faster artist loading
This commit is contained in:
parent
87126a0fe7
commit
efe67045d4
1 changed files with 1 additions and 1 deletions
|
|
@ -520,7 +520,7 @@ export class LosslessAPI {
|
||||||
|
|
||||||
const [primaryResponse, contentResponse] = await Promise.all([
|
const [primaryResponse, contentResponse] = await Promise.all([
|
||||||
this.fetchWithRetry(`/artist/?id=${artistId}`),
|
this.fetchWithRetry(`/artist/?id=${artistId}`),
|
||||||
this.fetchWithRetry(`/artist/?f=${artistId}`)
|
this.fetchWithRetry(`/artist/?f=${artistId}&skip_tracks=true`)
|
||||||
]);
|
]);
|
||||||
|
|
||||||
const primaryJsonData = await primaryResponse.json();
|
const primaryJsonData = await primaryResponse.json();
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue