mirror of
https://github.com/SickGear/SickGear.git
synced 2024-12-01 08:53:37 +00:00
Fixed BacklogSearchQueueItem show attribute error during searches
This commit is contained in:
parent
3efa9709af
commit
2fbae22f2f
1 changed files with 1 additions and 1 deletions
|
@ -100,7 +100,7 @@ class BacklogSearcher:
|
|||
segments = self._get_segments(curShow, fromDate)
|
||||
|
||||
for season, segment in segments.items():
|
||||
self.currentSearchInfo = {'title': self.show.name + " Season " + str(season)}
|
||||
self.currentSearchInfo = {'title': curShow.name + " Season " + str(season)}
|
||||
|
||||
backlog_queue_item = search_queue.BacklogQueueItem(curShow, segment)
|
||||
sickbeard.searchQueueScheduler.action.add_item(backlog_queue_item) # @UndefinedVariable
|
||||
|
|
Loading…
Reference in a new issue