Fix wrong domain regex
This commit is contained in:
parent
3ceee63dfc
commit
23cda74487
@ -15,7 +15,7 @@ public abstract class GlobalBase
|
||||
protected HashSet<LibraryConnector> libraryConnectors { get; init; }
|
||||
protected List<Manga> cachedPublications { get; init; }
|
||||
protected static readonly NumberFormatInfo numberFormatDecimalPoint = new (){ NumberDecimalSeparator = "." };
|
||||
protected static readonly Regex baseUrlRex = new(@"https?:\/\/[0-9A-z\.]*");
|
||||
protected static readonly Regex baseUrlRex = new(@"https?:\/\/[0-9A-z\.-]*");
|
||||
|
||||
protected GlobalBase(GlobalBase clone)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user