From 5c62c29cea79c47819ee800e15fc8a1e821b8ddf Mon Sep 17 00:00:00 2001 From: Garfield69 Date: Fri, 28 Jun 2019 19:17:23 +1200 Subject: [PATCH] mejortorrent: new domain .org --- src/Jackett.Common/Indexers/MejorTorrent.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Jackett.Common/Indexers/MejorTorrent.cs b/src/Jackett.Common/Indexers/MejorTorrent.cs index 48fd65274..ff042c160 100644 --- a/src/Jackett.Common/Indexers/MejorTorrent.cs +++ b/src/Jackett.Common/Indexers/MejorTorrent.cs @@ -18,7 +18,7 @@ namespace Jackett.Common.Indexers { class MejorTorrent : BaseWebIndexer { - public static Uri WebUri = new Uri("http://www.mejortorrentt.com/"); + public static Uri WebUri = new Uri("http://www.mejortorrentt.org/"); public static Uri DownloadUri = new Uri(WebUri, "secciones.php?sec=descargas&ap=contar_varios"); private static Uri SearchUriBase = new Uri(WebUri, "secciones.php"); public static Uri NewTorrentsUri = new Uri(WebUri, "secciones.php?sec=ultimos_torrents"); @@ -27,6 +27,7 @@ namespace Jackett.Common.Indexers public override string[] LegacySiteLinks { get; protected set; } = new string[] { "http://www.mejortorrent.org/", "http://www.mejortorrent.tv/", + "http://www.mejortorrentt.com/", }; public MejorTorrent(IIndexerConfigurationService configService, WebClient wc, Logger l, IProtectionService ps)