fix navidrome tag list sort

This commit is contained in:
Kendall Garner
2026-01-11 17:07:57 -08:00
parent bc0ba8c116
commit 40f04d6800
+4 -4
View File
@@ -159,7 +159,7 @@ export enum ImageType {
} }
export enum TagListSort { export enum TagListSort {
TAG_VALUE = 'tagValue', NAME = 'name',
} }
export type Album = { export type Album = {
@@ -437,13 +437,13 @@ type TagListSortMap = {
export const tagListSortMap: TagListSortMap = { export const tagListSortMap: TagListSortMap = {
jellyfin: { jellyfin: {
tagValue: undefined, name: undefined,
}, },
navidrome: { navidrome: {
tagValue: NDTagListSort.TAG_VALUE, name: NDTagListSort.TAG_VALUE,
}, },
subsonic: { subsonic: {
tagValue: undefined, name: undefined,
}, },
}; };