Correct ChapterNumbers for Mangasee

This commit is contained in:
Glax 2024-02-12 21:02:01 +01:00
parent 4888e18fd2
commit 9691eb0d08

View File

@ -196,7 +196,7 @@ public class Mangasee : MangaConnector
{
string url = chapter.Descendants("link").First().Value;
Match m = chVolRex.Match(url);
string volumeNumber = m.Groups[2].Success ? m.Groups[2].Value : "0";
string? volumeNumber = m.Groups[2].Success ? m.Groups[2].Value : null;
string chapterNumber = m.Groups[1].Value;
url = string.Concat(Regex.Match(url, @"(.*)-page-[0-9]+(\.html)").Groups.Values.Select(v => v.Value));