Removed a Unit test that we don't support yet for ranged volumes. Added a new case for Parser for v1.1 chapter parsing.

This commit is contained in:
Joseph Milazzo 2021-01-01 16:10:35 -06:00
parent fa71a40990
commit 521eac266a
2 changed files with 7 additions and 1 deletions

View file

@ -83,6 +83,12 @@ namespace API.Parser
@"(c|ch)(\.? ?)(?<Chapter>\d+-?\d*)",
RegexOptions.IgnoreCase | RegexOptions.Compiled),
// [Suihei Kiki]_Kasumi_Otoko_no_Ko_[Taruby]_v1.1.zip
new Regex(
@"v\d+\.(?<Chapter>\d+-?\d*)",
RegexOptions.IgnoreCase | RegexOptions.Compiled),
};