From 1e41e34ea17c3e96066c4648080326363f8748bf Mon Sep 17 00:00:00 2001 From: Octol1ttle Date: Fri, 21 Jul 2023 15:31:45 +0500 Subject: [PATCH] =?UTF-8?q?Allow=20U+0401=20(=D0=81)=20and=20U+0451=20(?= =?UTF-8?q?=D1=91)=20in=20nicknames?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Octol1ttle --- src/Services/GuildUpdateService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Services/GuildUpdateService.cs b/src/Services/GuildUpdateService.cs index 22ef0d2..3354ab3 100644 --- a/src/Services/GuildUpdateService.cs +++ b/src/Services/GuildUpdateService.cs @@ -259,7 +259,7 @@ public partial class GuildUpdateService : BackgroundService { return Task.CompletedTask; } - [GeneratedRegex("[^A-zА-я0-9]")] + [GeneratedRegex("[^0-9A-zЁА-яё]")] private static partial Regex IllegalCharsRegex(); private async Task TickReminderAsync(Reminder reminder, IUser user, MemberData memberData, CancellationToken ct) {