fix(member update): correct illegal nickname characters regex

This commit is contained in:
Octol1ttle 2023-10-04 21:48:23 +05:00
parent 2ab020a2b4
commit b54427d6cd
Signed by: Octol1ttle
GPG key ID: B77C34313AEE1FFF

View file

@ -197,7 +197,7 @@ public sealed partial class MemberUpdateService : BackgroundService
ct: ct);
}
[GeneratedRegex("[^0-9A-Аё]")]
[GeneratedRegex("[^0-9A-Za-zА-Яа-яЁё]")]
private static partial Regex IllegalChars();
private async Task<Result> TickReminderAsync(Reminder reminder, IUser user, MemberData data, CancellationToken ct)