Skip to content

Commit 87ebf76

Browse files
authored
Regex should still match https
1 parent c843272 commit 87ebf76

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: Jellyfin.Plugin.Anime/Providers/AniDB/Metadata/AniDbSeriesProvider.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ public class AniDbSeriesProvider : IRemoteMetadataProvider<Series, SeriesInfo>,
3232
// AniDB has very low request rate limits, a minimum of 2 seconds between requests, and an average of 4 seconds between requests
3333
public static readonly RateLimiter RequestLimiter = new RateLimiter(TimeSpan.FromSeconds(3), TimeSpan.FromSeconds(5), TimeSpan.FromMinutes(5));
3434
private static readonly int[] IgnoredTagIds = { 6, 22, 23, 60, 128, 129, 185, 216, 242, 255, 268, 269, 289 };
35-
private static readonly Regex AniDbUrlRegex = new Regex(@"http?://anidb.net/\w+ \[(?<name>[^\]]*)\]");
35+
private static readonly Regex AniDbUrlRegex = new Regex(@"https?://anidb.net/\w+ \[(?<name>[^\]]*)\]");
3636
private readonly IApplicationPaths _appPaths;
3737
private readonly IHttpClient _httpClient;
3838

0 commit comments

Comments
 (0)