From b3cf51172ff5d453396c6da8769abea54235dafc Mon Sep 17 00:00:00 2001 From: kaso17 Date: Tue, 30 Oct 2018 11:04:41 +0100 Subject: [PATCH] IPTorrents: fix login --- src/Jackett.Common/Indexers/IPTorrents.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Jackett.Common/Indexers/IPTorrents.cs b/src/Jackett.Common/Indexers/IPTorrents.cs index 2ccc844ae..34eeed057 100644 --- a/src/Jackett.Common/Indexers/IPTorrents.cs +++ b/src/Jackett.Common/Indexers/IPTorrents.cs @@ -209,7 +209,7 @@ namespace Jackett.Common.Indexers // Redirect to ? then to /t await FollowIfRedirect(response, request.Url, null, firstCallCookies); - await ConfigureIfOK(firstCallCookies, response.Content.Contains("/my.php"), () => + await ConfigureIfOK(firstCallCookies, response.Content.Contains("/lout.php"), () => { CQ dom = response.Content; var messageEl = dom["body > div"].First();