mirror of
https://github.com/SickGear/SickGear.git
synced 2024-12-02 17:33:37 +00:00
Merge branch 'master' into develop
This commit is contained in:
commit
4cdcebb31d
2 changed files with 6 additions and 1 deletions
|
@ -16,6 +16,11 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
### 0.16.9 (2018-05-17 15:30:00 UTC)
|
||||||
|
|
||||||
|
* Fix authorisation issue affecting some providers
|
||||||
|
|
||||||
|
|
||||||
### 0.16.8 (2018-05-17 02:00:00 UTC)
|
### 0.16.8 (2018-05-17 02:00:00 UTC)
|
||||||
|
|
||||||
* Fix changing master id via search method
|
* Fix changing master id via search method
|
||||||
|
|
|
@ -1552,6 +1552,7 @@ class TorrentProvider(GenericProvider):
|
||||||
return False
|
return False
|
||||||
|
|
||||||
passfield, userfield = None, None
|
passfield, userfield = None, None
|
||||||
|
post_params = isinstance(post_params, type({})) and post_params or {}
|
||||||
if not url:
|
if not url:
|
||||||
if hasattr(self, 'urls'):
|
if hasattr(self, 'urls'):
|
||||||
url = self.urls.get('login_action')
|
url = self.urls.get('login_action')
|
||||||
|
@ -1562,7 +1563,6 @@ class TorrentProvider(GenericProvider):
|
||||||
if self.should_skip() or None is response:
|
if self.should_skip() or None is response:
|
||||||
return False
|
return False
|
||||||
try:
|
try:
|
||||||
post_params = isinstance(post_params, type({})) and post_params or {}
|
|
||||||
form = 'form_tmpl' in post_params and post_params.pop('form_tmpl')
|
form = 'form_tmpl' in post_params and post_params.pop('form_tmpl')
|
||||||
if form:
|
if form:
|
||||||
form = re.findall(
|
form = re.findall(
|
||||||
|
|
Loading…
Reference in a new issue