This commit is contained in:
Glax 2024-01-20 17:20:56 +01:00
parent cd5ca0e302
commit 54142e61fe

View File

@ -69,7 +69,7 @@ public class Mangaworld: MangaConnector
if (requestResult.htmlDocument is null)
return null;
Regex idRex = new (@"https:\/\/www\.mangaworld\.bz\/manga\/([0-9]+\/[0-9A-z\-]+)");
Regex idRex = new (@"https:\/\/www\.mangaworld\.[a-z]{0,63}\/manga\/([0-9]+\/[0-9A-z\-]+)");
string id = idRex.Match(url).Groups[1].Value;
return ParseSinglePublicationFromHtml(requestResult.htmlDocument, id);
}