mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2025-06-19 22:50:31 +00:00
Fix SeriesName missing
Prevent crash from happening.
This commit is contained in:
parent
7a0f69e014
commit
b9d40d91a6
2 changed files with 3 additions and 3 deletions
|
@ -1363,7 +1363,8 @@ class ManualSync(LibrarySync):
|
|||
|
||||
if pdialog:
|
||||
percentage = int((float(count) / float(total))*100)
|
||||
pdialog.update(percentage, message="%s - %s" % (episode['SeriesName'], episode['Name']))
|
||||
title = "%s - %s" % (episode.get('SeriesName', "Unknown"), episode['Name'])
|
||||
pdialog.update(percentage, message=title)
|
||||
count += 1
|
||||
tvshows.add_updateEpisode(episode)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue