summaryrefslogtreecommitdiffstats
path: root/module/plugins/accounts
diff options
context:
space:
mode:
authorGravatar Walter Purcaro <vuolter@users.noreply.github.com> 2015-07-28 00:24:44 +0200
committerGravatar Walter Purcaro <vuolter@users.noreply.github.com> 2015-07-28 00:24:44 +0200
commita3d1e63fe5d8e674f2850fec98c5748cc274e954 (patch)
tree1d302390c15689fbdb042036101852d1dba367d8 /module/plugins/accounts
parentFix https://github.com/pyload/pyload/pull/1564 (thx Nippey) (diff)
downloadpyload-a3d1e63fe5d8e674f2850fec98c5748cc274e954.tar.xz
Fix https://github.com/pyload/pyload/issues/1545
Diffstat (limited to 'module/plugins/accounts')
-rw-r--r--module/plugins/accounts/OboomCom.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/accounts/OboomCom.py b/module/plugins/accounts/OboomCom.py
index fcb309132..380368b70 100644
--- a/module/plugins/accounts/OboomCom.py
+++ b/module/plugins/accounts/OboomCom.py
@@ -23,7 +23,7 @@ from module.plugins.internal.Account import Account
class OboomCom(Account):
__name__ = "OboomCom"
__type__ = "account"
- __version__ = "0.26"
+ __version__ = "0.27"
__status__ = "testing"
__description__ = """Oboom.com account plugin"""
@@ -36,7 +36,7 @@ class OboomCom(Account):
salt = passwd[::-1]
pbkdf2 = PBKDF2(passwd, salt, 1000).hexread(16)
- result = json_loads(self.load("https://www.oboom.com/1/login",
+ result = json_loads(self.load("http://www.oboom.com/1/login", #@TODO: Revert to `https` in 0.4.10
get={'auth': user,
'pass': pbkdf2}))