mirror of
https://github.com/SickGear/SickGear.git
synced 2025-01-23 01:43:43 +00:00
Merge tag 'release_0.7.2' into develop
This commit is contained in:
commit
438d2b88b5
2 changed files with 6 additions and 1 deletions
|
@ -33,6 +33,11 @@
|
||||||
* Fix the return flow from calls to the redirect function from executing incorrect code
|
* Fix the return flow from calls to the redirect function from executing incorrect code
|
||||||
|
|
||||||
|
|
||||||
|
### 0.7.2 (2015-03-10 17:05:00 UTC)
|
||||||
|
|
||||||
|
* Fix Add From Trending page (indexer_id can be "None" which causes white screen when clicking "Add Show")
|
||||||
|
|
||||||
|
|
||||||
### 0.7.1 (2015-03-10 17:00:00 UTC)
|
### 0.7.1 (2015-03-10 17:00:00 UTC)
|
||||||
|
|
||||||
* Fix error page when clicking "Add Recommended"
|
* Fix error page when clicking "Add Recommended"
|
||||||
|
|
|
@ -2240,7 +2240,7 @@ class NewHomeAddShows(Home):
|
||||||
return t.respond()
|
return t.respond()
|
||||||
|
|
||||||
def addTraktShow(self, indexer_id, showName):
|
def addTraktShow(self, indexer_id, showName):
|
||||||
if helpers.findCertainShow(sickbeard.showList, int(indexer_id)):
|
if helpers.findCertainShow(sickbeard.showList, config.to_int(indexer_id, '')):
|
||||||
return
|
return
|
||||||
return self.newShow('|'.join(['', '', indexer_id, showName]), use_show_name=True)
|
return self.newShow('|'.join(['', '', indexer_id, showName]), use_show_name=True)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue