diff --git a/couchpotato/core/providers/torrent/torrentleech/main.py b/couchpotato/core/providers/torrent/torrentleech/main.py index 6de18fbd..4247c530 100644 --- a/couchpotato/core/providers/torrent/torrentleech/main.py +++ b/couchpotato/core/providers/torrent/torrentleech/main.py @@ -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()