mirror of https://github.com/morpheus65535/bazarr
Fixed issue when series got updated in Sonarr and not reflected in Bazarr.
This commit is contained in:
parent
2c255db924
commit
1c6967d68f
|
@ -84,7 +84,7 @@ def update_series():
|
||||||
# Add shows in Sonarr to current shows list
|
# Add shows in Sonarr to current shows list
|
||||||
current_shows_sonarr.append(show['id'])
|
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"]),
|
series_to_update.append({'title': six.text_type(show["title"]),
|
||||||
'path': six.text_type(show["path"]),
|
'path': six.text_type(show["path"]),
|
||||||
'tvdbId': int(show["tvdbId"]),
|
'tvdbId': int(show["tvdbId"]),
|
||||||
|
|
Loading…
Reference in New Issue