Fix Bookmarks Subsonic support (#1099)

JSON responses were incorrect
This commit is contained in:
Deluan
2021-05-07 09:47:13 -04:00
parent 47f4e0a4de
commit 3e8d3e78c2
4 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -516,7 +516,7 @@ var _ = Describe("Responses", func() {
Created: time.Time{},
Changed: time.Time{},
}
bmk.Entry = []Child{{Id: "1", Title: "title", IsDir: false}}
bmk.Entry = Child{Id: "1", Title: "title", IsDir: false}
response.Bookmarks.Bookmark = []Bookmark{bmk}
})
It("should match .XML", func() {