mirror of
https://github.com/wkulhanek/bonob.git
synced 2025-12-22 01:43:29 +01:00
Album view sort by album name not artist name
This commit is contained in:
@@ -99,7 +99,7 @@ export const asResult = <T>([results, total]: [T[], number]) => ({
|
||||
|
||||
export type ArtistQuery = Paging;
|
||||
|
||||
export type AlbumQueryType = 'alphabeticalByArtist' | 'byGenre' | 'random' | 'recent' | 'frequent' | 'newest' | 'starred';
|
||||
export type AlbumQueryType = 'alphabeticalByArtist' | 'alphabeticalByName' | 'byGenre' | 'random' | 'recent' | 'frequent' | 'newest' | 'starred';
|
||||
|
||||
export type AlbumQuery = Paging & {
|
||||
type: AlbumQueryType;
|
||||
|
||||
@@ -632,7 +632,7 @@ function bindSmapiSoapServiceToExpress(
|
||||
});
|
||||
case "albums": {
|
||||
return albums({
|
||||
type: "alphabeticalByArtist",
|
||||
type: "alphabeticalByName",
|
||||
...paging,
|
||||
});
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user