mirror of
https://github.com/Prowlarr/Prowlarr
synced 2025-12-31 12:55:50 +01:00
Fixed: Application mapping regex fails
This commit is contained in:
parent
841ff7b6ee
commit
f97c3ff9bd
1 changed files with 1 additions and 1 deletions
|
|
@ -14,7 +14,7 @@ public abstract class ApplicationBase<TSettings> : IApplication
|
|||
protected readonly IAppIndexerMapService _appIndexerMapService;
|
||||
protected readonly Logger _logger;
|
||||
|
||||
protected static readonly Regex AppIndexerRegex = new Regex(@"(?<indexer>\d*)/api",
|
||||
protected static readonly Regex AppIndexerRegex = new Regex(@"\/(?<indexer>\d.)\/",
|
||||
RegexOptions.IgnoreCase | RegexOptions.Compiled);
|
||||
|
||||
public abstract string Name { get; }
|
||||
|
|
|
|||
Loading…
Reference in a new issue