diff --git a/src/Jackett.Common/Definitions/torlock.yml b/src/Jackett.Common/Definitions/torlock.yml index e7871f33e..623a07085 100644 --- a/src/Jackett.Common/Definitions/torlock.yml +++ b/src/Jackett.Common/Definitions/torlock.yml @@ -11,6 +11,7 @@ links: - https://www.torlock2.com/ - https://www.torlock.icu/ - https://torlock.unblockit.onl/ + - https://torlock.nocensor.space/ legacylinks: - https://torlock.com/ - https://torlock.unblockit.pro/ diff --git a/src/Jackett.Common/Definitions/toros.yml b/src/Jackett.Common/Definitions/toros.yml index 57fc4c55b..bad66b565 100644 --- a/src/Jackett.Common/Definitions/toros.yml +++ b/src/Jackett.Common/Definitions/toros.yml @@ -7,6 +7,7 @@ type: public encoding: UTF-8 links: - https://www.toros.co/ + - https://toros.nocensor.space/ caps: categorymappings: diff --git a/src/Jackett.Common/Definitions/torrentfunk.yml b/src/Jackett.Common/Definitions/torrentfunk.yml index bf4a203f3..b145e41e6 100644 --- a/src/Jackett.Common/Definitions/torrentfunk.yml +++ b/src/Jackett.Common/Definitions/torrentfunk.yml @@ -10,6 +10,7 @@ links: - https://www.torrentfunk.com/ - https://www.torrentfunk2.com/ - https://torrentfunk.unblockit.onl/ + - https://torrentfunk.nocensor.space/ legacylinks: - https://torrentfunk.unblockit.pro/ - https://torrentfunk.unblockit.one/ diff --git a/src/Jackett.Common/Definitions/yourbittorrent.yml b/src/Jackett.Common/Definitions/yourbittorrent.yml index e1d974c81..d35d9a912 100644 --- a/src/Jackett.Common/Definitions/yourbittorrent.yml +++ b/src/Jackett.Common/Definitions/yourbittorrent.yml @@ -8,6 +8,7 @@ encoding: UTF-8 links: - https://yourbittorrent.com/ - https://yourbittorrent2.com/ + - https://yourbittorrent.nocensor.space/ legacylinks: - https://yourbittorrent.host/ diff --git a/src/Jackett.Common/Indexers/SubsPlease.cs b/src/Jackett.Common/Indexers/SubsPlease.cs index 478767854..e569d138d 100644 --- a/src/Jackett.Common/Indexers/SubsPlease.cs +++ b/src/Jackett.Common/Indexers/SubsPlease.cs @@ -20,6 +20,11 @@ namespace Jackett.Common.Indexers [ExcludeFromCodeCoverage] public class SubsPlease : BaseWebIndexer { + public override string[] AlternativeSiteLinks { get; protected set; } = { + "https://subsplease.org/", + "https://subsplease.nocensor.space/" + }; + private string ApiEndpoint => SiteLink + "/api/?"; public SubsPlease(IIndexerConfigurationService configService, Utils.Clients.WebClient wc, Logger l, IProtectionService ps, ICacheService cs)