Fix logging smart playlist's song count

This commit is contained in:
Deluan 2021-11-20 12:29:09 -05:00
parent 3e282df639
commit cbeaadf8e2
4 changed files with 18 additions and 15 deletions

View file

@ -90,7 +90,6 @@ type PlaylistRepository interface {
GetWithTracks(id string) (*Playlist, error)
GetAll(options ...QueryOptions) (Playlists, error)
FindByPath(path string) (*Playlist, error)
RefreshStatus(playlistId string) error
Delete(id string) error
Tracks(playlistId string) PlaylistTrackRepository
}