mirror of
https://github.com/SickGear/SickGear.git
synced 2024-12-01 00:43:37 +00:00
Fixes shows not being added from tvrage
This commit is contained in:
parent
80e03a1475
commit
3c9f1d754d
1 changed files with 1 additions and 1 deletions
|
@ -592,7 +592,7 @@ class TVRage:
|
||||||
)
|
)
|
||||||
|
|
||||||
# check and make sure we have data to process and that it contains a series name
|
# check and make sure we have data to process and that it contains a series name
|
||||||
if not len(seriesInfoEt) or (isinstance(seriesInfoEt, dict) and 'seriesname' not in seriesInfoEt['series']):
|
if not len(seriesInfoEt) or (isinstance(seriesInfoEt, dict) and 'seriesname' not in seriesInfoEt):
|
||||||
return False
|
return False
|
||||||
|
|
||||||
for k, v in seriesInfoEt.items():
|
for k, v in seriesInfoEt.items():
|
||||||
|
|
Loading…
Reference in a new issue