From 0c135aa89efb1b3222347b206fbeb94418357d53 Mon Sep 17 00:00:00 2001 From: Glax Date: Sat, 6 Jan 2024 17:12:36 +0100 Subject: [PATCH] Fixes #97 because stupid --- Tranga/MangaConnectors/MangaLife.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tranga/MangaConnectors/MangaLife.cs b/Tranga/MangaConnectors/MangaLife.cs index 006d815..886f6f0 100644 --- a/Tranga/MangaConnectors/MangaLife.cs +++ b/Tranga/MangaConnectors/MangaLife.cs @@ -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}";