mirror of
https://github.com/SickGear/SickGear.git
synced 2025-01-07 10:33:38 +00:00
Merge pull request #810 from KontiSR/dev_copy_dict_master_issue
Bug in master while doing daily search: https://sickrage.tv/forums/forum/help-support/bug-issue-reports/8358-unsupported-operand-type-s-for-dict-and-dict
This commit is contained in:
commit
ca2e2d4dcf
1 changed files with 1 additions and 1 deletions
|
@ -207,7 +207,7 @@ class GenericProvider:
|
||||||
results = {}
|
results = {}
|
||||||
|
|
||||||
for ep in episode:
|
for ep in episode:
|
||||||
results += self.cache.findNeededEpisodes(ep)
|
results.update(self.cache.findNeededEpisodes(ep))
|
||||||
|
|
||||||
return results
|
return results
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue