mirror of
https://github.com/SickGear/SickGear.git
synced 2025-01-05 17:43:37 +00:00
Merge branch 'master' into develop
This commit is contained in:
commit
d109b752db
2 changed files with 6 additions and 1 deletions
|
@ -112,6 +112,11 @@
|
|||
* Fix Trakt, recommended and watchlist (send_oauth is now sent)
|
||||
|
||||
|
||||
### 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
|
||||
|
|
|
@ -2485,7 +2485,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