fix(subsonic): never omit duration for AlbumID3 (#5217)

This commit is contained in:
Kendall Garner
2026-03-17 17:20:10 +00:00
committed by GitHub
parent 693abe2f6b
commit f39d75e7d2
8 changed files with 9 additions and 6 deletions
+1 -1
View File
@@ -288,7 +288,7 @@ var _ = Describe("Responses", func() {
Context("with data", func() {
BeforeEach(func() {
album := AlbumID3{
Id: "1", Name: "album", Artist: "artist", Genre: "rock",
Id: "1", Name: "album", Artist: "artist", Duration: 292, Genre: "rock",
}
album.OpenSubsonicAlbumID3 = &OpenSubsonicAlbumID3{
Genres: []ItemGenre{{Name: "rock"}, {Name: "progressive"}},