diff options
| author | 2012-04-15 22:56:36 +0200 | |
|---|---|---|
| committer | 2012-04-15 22:56:36 +0200 | |
| commit | f0fe6973eb5e265b082cd9f8418524a1913f9b90 (patch) | |
| tree | 90796b32e37ac2cbb7363b1a8b9f04ddbc103478 /module | |
| parent | Netload.in RegEx Fix (diff) | |
| download | pyload-f0fe6973eb5e265b082cd9f8418524a1913f9b90.tar.xz | |
Netloadin Login Cookie fix
Diffstat (limited to 'module')
| -rwxr-xr-x | module/plugins/accounts/NetloadIn.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/module/plugins/accounts/NetloadIn.py b/module/plugins/accounts/NetloadIn.py index 72d9ab554..4d05732ce 100755 --- a/module/plugins/accounts/NetloadIn.py +++ b/module/plugins/accounts/NetloadIn.py @@ -44,6 +44,6 @@ class NetloadIn(Account): return {"validuntil": validuntil, "trafficleft": trafficleft, "premium" : premium} def login(self, user, data,req): - page = req.load("http://netload.in/index.php", None, { "txtuser" : user, "txtpass" : data['password'], "txtcheck" : "login", "txtlogin" : ""}, cookies=True) + page = req.load("http://netload.in/index.php", None, { "txtuser" : user, "txtpass" : data['password'], "txtcheck" : "login", "txtlogin" : "Login"}, cookies=True) if "password or it might be invalid!" in page: self.wrongPassword() |
