Fix changing status from "Skipped" to "Wanted" in Manage/Episode Status.

This commit is contained in:
JackDandy 2018-03-13 22:02:53 +00:00
parent 5cb04b0802
commit 8d30118e14
2 changed files with 7 additions and 2 deletions

View file

@ -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

View file

@ -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)