More legal characters

This commit is contained in:
2023-05-25 17:34:24 +02:00
parent 2bfab0298d
commit 6fa6f897aa
2 changed files with 2 additions and 2 deletions

View File

@ -16,7 +16,7 @@ public struct Chapter
public string fileName { get; }
public string sortNumber { get; }
private static readonly Regex LegalCharacters = new Regex(@"([A-z]*[0-9]* *\.*-*,*\]*\[*'*~*!*)*");
private static readonly Regex LegalCharacters = new Regex(@"([A-z]*[0-9]* *\.*-*,*\]*\[*'*\'*\)*\(*~*!*)*");
public Chapter(string? name, string? volumeNumber, string? chapterNumber, string url)
{
this.name = name;