From 40f04d680017e0f5c4e61e7ea5e684756d21af53 Mon Sep 17 00:00:00 2001 From: Kendall Garner <17521368+kgarner7@users.noreply.github.com> Date: Sun, 11 Jan 2026 17:07:57 -0800 Subject: [PATCH] fix navidrome tag list sort --- src/shared/types/domain-types.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/shared/types/domain-types.ts b/src/shared/types/domain-types.ts index 2bee07f35..f1a6db8db 100644 --- a/src/shared/types/domain-types.ts +++ b/src/shared/types/domain-types.ts @@ -159,7 +159,7 @@ export enum ImageType { } export enum TagListSort { - TAG_VALUE = 'tagValue', + NAME = 'name', } export type Album = { @@ -437,13 +437,13 @@ type TagListSortMap = { export const tagListSortMap: TagListSortMap = { jellyfin: { - tagValue: undefined, + name: undefined, }, navidrome: { - tagValue: NDTagListSort.TAG_VALUE, + name: NDTagListSort.TAG_VALUE, }, subsonic: { - tagValue: undefined, + name: undefined, }, };