mirror of
https://github.com/TeamOctolings/Octobot.git
synced 2025-01-31 09:09:00 +03:00
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)
|
||||||
|
|
Loading…
Reference in a new issue