mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 21:17:37 +03:00
Fix child.size
and directory.playCount
compatibility with Subsonic API. Fixes #304
This commit is contained in:
parent
c2d1e9df9f
commit
17df63b550
12 changed files with 17 additions and 18 deletions
|
@ -101,7 +101,7 @@ var _ = Describe("MediaRepository", func() {
|
|||
Expect(err).To(BeNil())
|
||||
|
||||
Expect(mf.PlayDate.Unix()).To(Equal(playDate.Unix()))
|
||||
Expect(mf.PlayCount).To(Equal(1))
|
||||
Expect(mf.PlayCount).To(Equal(int64(1)))
|
||||
})
|
||||
|
||||
It("increments play count on newly starred items", func() {
|
||||
|
@ -115,7 +115,7 @@ var _ = Describe("MediaRepository", func() {
|
|||
Expect(err).To(BeNil())
|
||||
|
||||
Expect(mf.PlayDate.Unix()).To(Equal(playDate.Unix()))
|
||||
Expect(mf.PlayCount).To(Equal(1))
|
||||
Expect(mf.PlayCount).To(Equal(int64(1)))
|
||||
})
|
||||
})
|
||||
})
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue