mirror of
https://github.com/SickGear/SickGear.git
synced 2025-01-05 17:43:37 +00:00
Merge branch 'hotfix/0.12.9'
This commit is contained in:
commit
ccedfb8259
2 changed files with 9 additions and 4 deletions
|
@ -1,4 +1,9 @@
|
|||
### 0.12.8 (2017-02-19 13:50:00 UTC)
|
||||
### 0.12.9 (2017-02-24 18:40:00 UTC)
|
||||
|
||||
* Fix issue saving custom NewznabProviders
|
||||
|
||||
|
||||
### 0.12.8 (2017-02-19 13:50:00 UTC)
|
||||
|
||||
* Change BTN API hostname
|
||||
|
||||
|
|
|
@ -98,9 +98,9 @@ class NewznabProvider(generic.NZBProvider):
|
|||
self.cat_ids = cat_ids or ''
|
||||
self._cat_ids = None
|
||||
self.search_mode = search_mode or 'eponly'
|
||||
self.search_fallback = search_fallback
|
||||
self.enable_recentsearch = enable_recentsearch
|
||||
self.enable_backlog = enable_backlog
|
||||
self.search_fallback = bool(helpers.tryInt(search_fallback))
|
||||
self.enable_recentsearch = bool(helpers.tryInt(enable_recentsearch))
|
||||
self.enable_backlog = bool(helpers.tryInt(enable_backlog))
|
||||
self.needs_auth = '0' != self.key.strip() # '0' in the key setting indicates that api_key is not needed
|
||||
self.default = False
|
||||
self._caps = {}
|
||||
|
|
Loading…
Reference in a new issue