B"H use consistent name (same as playlist_as_songs) - rebase
This commit is contained in:
parent
127cd030d8
commit
5bfe185ef0
2 changed files with 2 additions and 2 deletions
|
@ -62,7 +62,7 @@ class SubidyLibraryProvider(backend.LibraryProvider):
|
||||||
return self.subsonic_api.get_songs_as_tracks(album_id)
|
return self.subsonic_api.get_songs_as_tracks(album_id)
|
||||||
|
|
||||||
def lookup_artist(self, artist_id):
|
def lookup_artist(self, artist_id):
|
||||||
return self.subsonic_api.get_artist_songs_as_tracks(artist_id)
|
return self.subsonic_api.get_artist_as_songs_as_tracks(artist_id)
|
||||||
|
|
||||||
def lookup_directory(self, directory_id):
|
def lookup_directory(self, directory_id):
|
||||||
return self.subsonic_api.get_diritems_as_tracks(directory_id)
|
return self.subsonic_api.get_diritems_as_tracks(directory_id)
|
||||||
|
|
|
@ -292,7 +292,7 @@ class SubsonicApi():
|
||||||
return None
|
return None
|
||||||
return [self.raw_song_to_ref(song) for song in playlist.get('entry')]
|
return [self.raw_song_to_ref(song) for song in playlist.get('entry')]
|
||||||
|
|
||||||
def get_artist_songs_as_tracks(self, artist_id):
|
def get_artist_as_songs_as_tracks(self, artist_id):
|
||||||
albums = self.get_raw_albums(artist_id)
|
albums = self.get_raw_albums(artist_id)
|
||||||
if albums is None:
|
if albums is None:
|
||||||
return None
|
return None
|
||||||
|
|
Loading…
Add table
Reference in a new issue