forked from TeamInklings/Octobot
Correct illegal nickname characters regex (#151)
Apparently there are non-letter characters in between A-Z and a-z
This commit is contained in:
parent
8a27aae2b7
commit
6f1e543edb
1 changed files with 1 additions and 1 deletions
|
@ -197,7 +197,7 @@ public sealed partial class MemberUpdateService : BackgroundService
|
||||||
ct: ct);
|
ct: ct);
|
||||||
}
|
}
|
||||||
|
|
||||||
[GeneratedRegex("[^0-9A-zЁА-яё]")]
|
[GeneratedRegex("[^0-9A-Za-zА-Яа-яЁё]")]
|
||||||
private static partial Regex IllegalChars();
|
private static partial Regex IllegalChars();
|
||||||
|
|
||||||
private async Task<Result> TickReminderAsync(Reminder reminder, IUser user, MemberData data, CancellationToken ct)
|
private async Task<Result> TickReminderAsync(Reminder reminder, IUser user, MemberData data, CancellationToken ct)
|
||||||
|
|
Reference in a new issue