Fix playlist cannot be empty via Subsonic API

This commit is contained in:
Deluan 2021-11-05 10:23:45 -04:00
parent 5994c31f4c
commit 0d9dcebf32
4 changed files with 22 additions and 3 deletions

View file

@ -120,5 +120,6 @@ type PlaylistTrackRepository interface {
AddArtists(artistIds []string) (int, error)
AddDiscs(discs []DiscID) (int, error)
Delete(id ...string) error
DeleteAll() error
Reorder(pos int, newPos int) error
}