diff --git a/API/MangaConnectors/MangaPark.cs b/API/MangaConnectors/MangaPark.cs index 0c548b7..51bc614 100644 --- a/API/MangaConnectors/MangaPark.cs +++ b/API/MangaConnectors/MangaPark.cs @@ -231,8 +231,8 @@ public class MangaPark : MangaConnector return null; } - MatchCollection matchCollection = Matches(imageJson, @"https?:\/\/[\da-zA-Z\.]+\/[^,""]*\.[a-z]+"); - return matchCollection.Select(m => m.Value).ToArray(); + MatchCollection matchCollection = Matches(imageJson, @"""https?:\/\/[\da-zA-Z\.]+\/[^,]*\.[a-z]+"""); + return matchCollection.Select(m => m.Value.Trim('"')).ToArray(); } else return null; }