Removed Playlist.GetWithTracks, not needed anymore

This commit is contained in:
Deluan
2020-04-11 19:05:51 -04:00
parent e232c5c561
commit 9fb4f5ef52
4 changed files with 10 additions and 27 deletions
+1 -1
View File
@@ -124,7 +124,7 @@ type PlaylistInfo struct {
}
func (p *playlists) Get(ctx context.Context, id string) (*PlaylistInfo, error) {
pl, err := p.ds.Playlist(ctx).GetWithTracks(id)
pl, err := p.ds.Playlist(ctx).Get(id)
if err != nil {
return nil, err
}