Skip to content

Commit

Permalink
fix: ignore more episode names
Browse files Browse the repository at this point in the history
  • Loading branch information
revam committed Feb 6, 2025
1 parent c08727d commit 40d90ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Shokofin/Utils/Text.cs
Original file line number Diff line number Diff line change
Expand Up @@ -375,7 +375,7 @@ private static TitleProvider[] GetOrderedTitleProvidersByType(TitleProviderType
return null;
}

[GeneratedRegex(@"^(?:Special|Episode) \d+$|^Part \d+ of \d+$|^Volume \d$|^(?:OVA|OAD|Movie|Complete Movie|Short Movie|TV Special|Music Video|Web|Volume)$", RegexOptions.IgnoreCase | RegexOptions.Compiled, "en-US")]
[GeneratedRegex(@"^(?:Special|Episode|Volume|OVA|OAD|Web) \d+$|^Part \d+ of \d+$|^(?:OVA|OAD|Movie|Complete Movie|Short Movie|TV Special|Music Video|Web|Volume)$", RegexOptions.IgnoreCase | RegexOptions.Compiled, "en-US")]
private static partial Regex EpisodeNameRegex();

/// <summary>
Expand Down

0 comments on commit 40d90ec

Please sign in to comment.