From 45c660dcc5a40539471c01a7b5cf723c2cf700a9 Mon Sep 17 00:00:00 2001 From: jeffvli Date: Thu, 16 Jul 2026 18:53:05 -0700 Subject: [PATCH] support parsing multivalued tags --- src/main/features/core/tag-editor/taglib-service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/features/core/tag-editor/taglib-service.ts b/src/main/features/core/tag-editor/taglib-service.ts index 7dc47c2e2..e03906af3 100644 --- a/src/main/features/core/tag-editor/taglib-service.ts +++ b/src/main/features/core/tag-editor/taglib-service.ts @@ -46,7 +46,7 @@ function flattenProperties(props: Record): Record< const flat: Record = {}; for (const [key, values] of Object.entries(props)) { if (values && values.length > 0 && values[0] !== '') { - flat[key] = values[0]; + flat[key] = values.join('; '); } } const coveredByUpperCase = new Set(