changed genre scanning to parse multiple genres, updated db to accommodate.

This commit is contained in:
2026-02-22 13:59:28 -05:00
parent 3947c2d6aa
commit 9cb1c6674a
24 changed files with 457 additions and 40 deletions
@@ -44,7 +44,7 @@ export const COLUMN_DEFS: Record<string, ColumnDef> = {
genre: {
id: 'genre',
label: 'Genre',
accessor: (t) => t.Genre,
accessor: (t) => (t.Genre ?? []).join(', '),
defaultWidth: '120px',
},
year: {
+1 -1
View File
@@ -94,7 +94,7 @@ export namespace library {
TrackNumber: number;
DiscNumber: number;
Album: string;
Genre: string;
Genre: string[];
Year: number;
Composer: string;
FileType: string;