Add login check to torrentleech. closes #1635

This commit is contained in:
Ruud
2013-04-16 21:15:38 +02:00
parent 64afa3701a
commit 4f6b31d14a

View File

@@ -74,3 +74,6 @@ class TorrentLeech(TorrentProvider):
'remember_me': 'on',
'login': 'submit',
})
def loginSuccess(self, output):
return '/user/account/logout' in output.lower() or 'welcome back' in output.lower()