1
0
Fork 0
mirror of https://github.com/Jackett/Jackett synced 2025-03-04 18:59:01 +00:00

fix coding style

This commit is contained in:
Bogdan 2024-08-16 14:57:43 +03:00
parent e07f595c6e
commit 1d6fb40692

View file

@ -39,7 +39,7 @@ namespace Jackett.Common.Indexers.Definitions
protected override int ApiKeyLength => 64;
protected override string FlipOptionalTokenString(string requestLink) => requestLink.Replace("&usetoken=1", "");
private static Regex YearRegex => new (@"\b(?:19|20|21)\d{2}\b", RegexOptions.Compiled);
private static Regex YearRegex => new Regex(@"\b(?:19|20|21)\d{2}\b", RegexOptions.Compiled);
public GazelleGamesApi(IIndexerConfigurationService configService, WebClient wc, Logger l, IProtectionService ps,
ICacheService cs)