Fixes #97 because stupid

This commit is contained in:
Glax 2024-01-06 17:12:36 +01:00
parent e11ee4dafe
commit 0c135aa89e

View File

@ -150,7 +150,7 @@ public class MangaLife : MangaConnector
Match rexMatch = urlRex.Match(url);
string volumeNumber = "1";
if (rexMatch.Groups[3].Value.Length > 1)
if (rexMatch.Groups[3].Value.Length > 0)
volumeNumber = rexMatch.Groups[3].Value;
string chapterNumber = rexMatch.Groups[1].Value;
string fullUrl = $"https://manga4life.com{url}";