Album view sort by album name not artist name

This commit is contained in:
simojenki
2021-08-16 10:13:16 +10:00
parent db0351da39
commit c67f74bf08
6 changed files with 52 additions and 29 deletions

View File

@@ -1576,7 +1576,7 @@ describe("api", () => {
);
expect(musicLibrary.albums).toHaveBeenCalledWith({
type: "alphabeticalByArtist",
type: "alphabeticalByName",
_index: paging.index,
_count: paging.count,
});
@@ -1622,7 +1622,7 @@ describe("api", () => {
);
expect(musicLibrary.albums).toHaveBeenCalledWith({
type: "alphabeticalByArtist",
type: "alphabeticalByName",
_index: paging.index,
_count: paging.count,
});