feat(subsonic): add support for multi-valued album artist tags

closes #103

a

a

a

r

a

a

a

a

a

a

a

a

a

a
This commit is contained in:
sentriz
2023-07-31 23:07:41 +01:00
parent 908c7cf088
commit 3ac77823c3
27 changed files with 641 additions and 266 deletions

View File

@@ -208,8 +208,8 @@ func (m *MockFS) LogAlbums() {
m.t.Logf("\nalbums")
for _, album := range albums {
m.t.Logf("id %-3d root %-3s lr %-15s %-10s pid %-3d aid %-3d cov %-10s",
album.ID, album.RootDir, album.LeftPath, album.RightPath, album.ParentID, album.TagArtistID, album.Cover)
m.t.Logf("id %-3d root %-3s lr %-15s %-10s pid %-3d cov %-10s",
album.ID, album.RootDir, album.LeftPath, album.RightPath, album.ParentID, album.Cover)
}
m.t.Logf("total %d", len(albums))
}
@@ -341,7 +341,7 @@ func (m *MockFS) DumpDB(suffix ...string) {
m.t.Fatalf("backing up: %v", err)
}
m.t.Error("DumpDB left behind")
m.t.Error(destPath)
}
type tagReaderResult struct {