From f97c3ff9bdb7cedfd00541e2dba905915268753a Mon Sep 17 00:00:00 2001 From: Qstick Date: Fri, 30 Jul 2021 21:22:41 -0400 Subject: [PATCH] Fixed: Application mapping regex fails --- src/NzbDrone.Core/Applications/ApplicationBase.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NzbDrone.Core/Applications/ApplicationBase.cs b/src/NzbDrone.Core/Applications/ApplicationBase.cs index e38854462..0317ad799 100644 --- a/src/NzbDrone.Core/Applications/ApplicationBase.cs +++ b/src/NzbDrone.Core/Applications/ApplicationBase.cs @@ -14,7 +14,7 @@ namespace NzbDrone.Core.Applications protected readonly IAppIndexerMapService _appIndexerMapService; protected readonly Logger _logger; - protected static readonly Regex AppIndexerRegex = new Regex(@"(?\d*)/api", + protected static readonly Regex AppIndexerRegex = new Regex(@"\/(?\d.)\/", RegexOptions.IgnoreCase | RegexOptions.Compiled); public abstract string Name { get; }