mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2025-06-02 14:26:14 +00:00
Fix typo
This commit is contained in:
parent
e9fb760fa3
commit
012b83f48b
2 changed files with 4 additions and 4 deletions
|
@ -155,7 +155,7 @@ class Music(Items):
|
|||
if self.add_updateArtist(item):
|
||||
# Add albums
|
||||
all_albums = self.emby.getAlbumsbyArtist(item['Id'])
|
||||
self.added_album(all_albums['Items'])
|
||||
self.add_albums(all_albums['Items'])
|
||||
|
||||
def add_albums(self, items, total=None):
|
||||
|
||||
|
@ -167,7 +167,7 @@ class Music(Items):
|
|||
if self.add_updateAlbum(item):
|
||||
# Add songs
|
||||
all_songs = self.emby.getSongsbyAlbum(item['Id'])
|
||||
self.added_song(all_songs['Items'])
|
||||
self.add_songs(all_songs['Items'])
|
||||
|
||||
def add_songs(self, items, total=None):
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue