mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-11-10 04:06:11 +00:00
Check path instead of name for missing episodes
This commit is contained in:
parent
1dcc2245a2
commit
572cfad5fd
1 changed files with 1 additions and 1 deletions
|
@ -353,7 +353,7 @@ class FullSync(object):
|
|||
|
||||
for episodes in server.get_episode_by_show(show['Id']):
|
||||
for episode in episodes['Items']:
|
||||
if episode.get('Name'):
|
||||
if episode.get('Path'):
|
||||
dialog.update(percent, message="%s/%s" % (message, episode['Name'][:10]))
|
||||
obj.episode(episode)
|
||||
processed_ids.append(show['Id'])
|
||||
|
|
Loading…
Reference in a new issue