Forgot to fix some unit tests.
This commit is contained in:
parent
cd67f1ed58
commit
51d4014e11
2 changed files with 7 additions and 4 deletions
|
|
@ -108,7 +108,6 @@ namespace API.Parser
|
|||
private static readonly Regex[] MangaChapterRegex = new[]
|
||||
{
|
||||
new Regex(
|
||||
|
||||
@"(c|ch)(\.? ?)(?<Chapter>\d+-?\d*)",
|
||||
RegexOptions.IgnoreCase | RegexOptions.Compiled),
|
||||
// [Suihei Kiki]_Kasumi_Otoko_no_Ko_[Taruby]_v1.1.zip
|
||||
|
|
@ -128,6 +127,10 @@ namespace API.Parser
|
|||
new Regex(
|
||||
@"^((?!v|vo|vol|Volume).)*( |_)(?<Chapter>\.?\d+)( |_)",
|
||||
RegexOptions.IgnoreCase | RegexOptions.Compiled),
|
||||
// Yumekui-Merry_DKThias_Chapter21.zip
|
||||
new Regex(
|
||||
@"Chapter(?<Chapter>\d+(-\d+)?)",
|
||||
RegexOptions.IgnoreCase | RegexOptions.Compiled),
|
||||
|
||||
};
|
||||
private static readonly Regex[] MangaEditionRegex = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue