mirror of
https://github.com/SickGear/SickGear.git
synced 2025-01-05 17:43:37 +00:00
Fix changing status from "Skipped" to "Wanted" in Manage/Episode Status.
This commit is contained in:
parent
5cb04b0802
commit
8d30118e14
2 changed files with 7 additions and 2 deletions
|
@ -1,4 +1,9 @@
|
|||
### 0.14.7 (2018-03-12 21:30:00 UTC)
|
||||
### 0.14.8 (2018-03-13 22:00:00 UTC)
|
||||
|
||||
Fix changing status from "Skipped" to "Wanted" in Manage/Episode Status
|
||||
|
||||
|
||||
### 0.14.7 (2018-03-12 21:30:00 UTC)
|
||||
|
||||
Add DrunkenSlug usenet provider
|
||||
Fix PiSexy torrent provider
|
||||
|
|
|
@ -2081,7 +2081,7 @@ class Home(MainHandler):
|
|||
return self._genericMessage('Error', err_msg)
|
||||
|
||||
use_default = False
|
||||
if '-' in status:
|
||||
if isinstance(status, basestring) and '-' in status:
|
||||
use_default = True
|
||||
status = status.replace('-', '')
|
||||
status = int(status)
|
||||
|
|
Loading…
Reference in a new issue