mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2025-06-17 21:56:13 +00:00
Fix update music
This commit is contained in:
parent
18c493909d
commit
50c71c70d4
2 changed files with 8 additions and 2 deletions
|
@ -1882,6 +1882,8 @@ class Music(Items):
|
|||
|
||||
def added(self, items, pdialog):
|
||||
|
||||
total = len(items)
|
||||
count = 0
|
||||
for artist in items:
|
||||
|
||||
title = artist['Name']
|
||||
|
@ -1896,6 +1898,8 @@ class Music(Items):
|
|||
|
||||
def added_album(self, items, pdialog):
|
||||
|
||||
total = len(items)
|
||||
count = 0
|
||||
for album in items:
|
||||
|
||||
title = album['Name']
|
||||
|
@ -1910,6 +1914,8 @@ class Music(Items):
|
|||
|
||||
def added_song(self, items, pdialog):
|
||||
|
||||
total = len(items)
|
||||
count = 0
|
||||
for song in items:
|
||||
|
||||
title = song['Name']
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue