Fixed issue when series got updated in Sonarr and not reflected in Bazarr.

pull/745/head
morpheus65535 5 years ago committed by GitHub
parent 2c255db924
commit 1c6967d68f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -84,7 +84,7 @@ def update_series():
# Add shows in Sonarr to current shows list
current_shows_sonarr.append(show['id'])
if show['tvdbId'] in current_shows_db_list:
if show['id'] in current_shows_db_list:
series_to_update.append({'title': six.text_type(show["title"]),
'path': six.text_type(show["path"]),
'tvdbId': int(show["tvdbId"]),

Loading…
Cancel
Save