From aac2e5500e7f8de590c3d112271d7e07feabfb40 Mon Sep 17 00:00:00 2001 From: ilike2burnthing <59480337+ilike2burnthing@users.noreply.github.com> Date: Sat, 7 Jan 2023 15:00:51 +0000 Subject: [PATCH] subsplease: prevent double slash in api url --- src/Jackett.Common/Indexers/SubsPlease.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Jackett.Common/Indexers/SubsPlease.cs b/src/Jackett.Common/Indexers/SubsPlease.cs index b53c48472..8a1ada798 100644 --- a/src/Jackett.Common/Indexers/SubsPlease.cs +++ b/src/Jackett.Common/Indexers/SubsPlease.cs @@ -33,7 +33,7 @@ namespace Jackett.Common.Indexers "https://subsplease.nocensor.world/" }; - private string ApiEndpoint => SiteLink + "/api/?"; + private string ApiEndpoint => SiteLink + "api/?"; public SubsPlease(IIndexerConfigurationService configService, Utils.Clients.WebClient wc, Logger l, IProtectionService ps, ICacheService cs) : base(id: "subsplease",