From dd79de1321b343ccf5610e9062f25c244ccd90f5 Mon Sep 17 00:00:00 2001 From: kaso17 Date: Mon, 14 Nov 2016 08:34:06 +0100 Subject: [PATCH] IPTorrents: Add ipt-update.com as alternative and make it the default (#682) * IPTorrents: Add iptorrents.eu alternative * Add ipt-update.com as alternative and make it the default * Add ipt-update.com as alternative and make it the default --- src/Jackett/Indexers/IPTorrents.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Jackett/Indexers/IPTorrents.cs b/src/Jackett/Indexers/IPTorrents.cs index e6cc8292e..ec41b078d 100644 --- a/src/Jackett/Indexers/IPTorrents.cs +++ b/src/Jackett/Indexers/IPTorrents.cs @@ -25,7 +25,7 @@ namespace Jackett.Indexers string LoginUrl { get { return UseLink + "login.php"; } } string TakeLoginUrl { get { return UseLink + "take_login.php"; } } private string BrowseUrl { get { return UseLink + "t"; } } - private List KnownURLs = new List { "https://iptorrents.com/", "https://iptorrents.eu", "https://nemo.iptorrents.com/", "https://ipt.rocks/" }; + private List KnownURLs = new List { "https://ipt-update.com/", "https://iptorrents.com/", "https://iptorrents.eu", "https://nemo.iptorrents.com/", "https://ipt.rocks/" }; new ConfigurationDataRecaptchaLoginWithAlternateLink configData { @@ -36,7 +36,7 @@ namespace Jackett.Indexers public IPTorrents(IIndexerManagerService i, IWebClient wc, Logger l, IProtectionService ps) : base(name: "IPTorrents", description: "Always a step ahead.", - link: "https://iptorrents.com/", + link: "https://ipt-update.com/", caps: new TorznabCapabilities(), manager: i, client: wc,