Adjust filters

This commit is contained in:
jeffvli 2023-01-13 01:54:35 -08:00
parent 53f3758d2a
commit 8afd626806
2 changed files with 3 additions and 2 deletions

View file

@ -230,7 +230,7 @@ export type NDAlbumListParams = {
export enum NDSongListSort {
ALBUM = 'album, order_album_artist_name, disc_number, track_number, title',
ALBUM_ARTIST = 'albumArtist',
ALBUM_ARTIST = 'order_album_artist_name, album, disc_number, track_number, title',
ALBUM_SONGS = 'album, discNumber, trackNumber',
ARTIST = 'artist',
BPM = 'bpm',
@ -246,7 +246,7 @@ export enum NDSongListSort {
RECENTLY_ADDED = 'createdAt',
TITLE = 'title',
TRACK = 'track',
YEAR = 'year',
YEAR = 'year, album, discNumber, trackNumber',
}
export type NDSongListParams = {

View file

@ -461,6 +461,7 @@ export type SongListQuery = {
albumIds?: string[];
artistIds?: string[];
jfParams?: {
artistIds?: string;
filters?: string;
genreIds?: string;
genres?: string;