From c5116e9d06013a6e4d51a2943f0e5b647048a0b3 Mon Sep 17 00:00:00 2001 From: Yllelder Bamir Date: Mon, 1 Jul 2019 21:55:03 +0200 Subject: [PATCH] mejortorrent: switch to https (#5583) The web now uses https instead http. Without this, the indexer doesn't work. --- 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 03687b8b2..fdf36a1af 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.org/"); + public static Uri WebUri = new Uri("https://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"); @@ -28,6 +28,7 @@ namespace Jackett.Common.Indexers "http://www.mejortorrent.org/", "http://www.mejortorrent.tv/", "http://www.mejortorrentt.com/", + "http://www.mejortorrentt.org/", }; public MejorTorrent(IIndexerConfigurationService configService, WebClient wc, Logger l, IProtectionService ps)