From c4aa49eb32056d55198bbfc862f50059701caa3f Mon Sep 17 00:00:00 2001 From: Raphael Barreiros Date: Tue, 12 Jun 2018 16:44:42 -0300 Subject: [PATCH] Update BJ-Share to new domain name (#3225) * Update BJ-Share to new domain name BJ-Share changed its domain from bj-share.me to bj-share.info * Added LegacySiteLinks method --- src/Jackett.Common/Indexers/BJShare.cs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/Jackett.Common/Indexers/BJShare.cs b/src/Jackett.Common/Indexers/BJShare.cs index 0031dc2a3..a4364cc6c 100644 --- a/src/Jackett.Common/Indexers/BJShare.cs +++ b/src/Jackett.Common/Indexers/BJShare.cs @@ -28,6 +28,10 @@ namespace Jackett.Common.Indexers { { "agents of shield", "Agents of S.H.I.E.L.D."} }; + + public override string[] LegacySiteLinks { get; protected set; } = new string[] { + "https://bj-share.me/" + }; private ConfigurationDataBasicLoginWithRSSAndDisplay ConfigData { @@ -38,7 +42,7 @@ namespace Jackett.Common.Indexers public BJShare(IIndexerConfigurationService configService, WebClient wc, Logger l, IProtectionService ps) : base("BJ-Share", description: "A brazilian tracker.", - link: "https://bj-share.me/", + link: "https://bj-share.info/", caps: TorznabUtil.CreateDefaultTorznabTVCaps(), configService: configService, client: wc,