fix missing normalization
This commit is contained in:
parent
4b2c3e778a
commit
17c0c8317f
@ -193,7 +193,7 @@ export class API {
|
|||||||
|
|
||||||
async getStarred() {
|
async getStarred() {
|
||||||
const [tracks, albums] = await Promise.all([
|
const [tracks, albums] = await Promise.all([
|
||||||
this.get("rest/getStarred2").then(r => r.starred2.song),
|
this.get("rest/getStarred2").then(r => this.normalizeTrackList(r.starred2.song)),
|
||||||
this.get("rest/getAlbumList2", { type: 'starred' }).then(r => r.albumList2),
|
this.get("rest/getAlbumList2", { type: 'starred' }).then(r => r.albumList2),
|
||||||
this.get("rest/getAlbumList2", { type: 'starred' }).then(r => r.albumList2),
|
this.get("rest/getAlbumList2", { type: 'starred' }).then(r => r.albumList2),
|
||||||
]);
|
]);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user