From ba32038c28b257083b56c381ab5c8118d9a3aef5 Mon Sep 17 00:00:00 2001 From: spiral Date: Tue, 20 Sep 2022 16:45:16 +0000 Subject: [PATCH] feat(proxy): temporarily remove invalid character check on webhook names --- PluralKit.Bot/Services/WebhookExecutorService.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/PluralKit.Bot/Services/WebhookExecutorService.cs b/PluralKit.Bot/Services/WebhookExecutorService.cs index 3ea0fb6f..ac96df0a 100644 --- a/PluralKit.Bot/Services/WebhookExecutorService.cs +++ b/PluralKit.Bot/Services/WebhookExecutorService.cs @@ -253,8 +253,8 @@ public static class ProxyNameExt .FixEveryone() .FixDiscord() .FixBackticks() - .FixSingleCharacterName() - .ThrowOnInvalidCharacters(); + .FixSingleCharacterName(); + // .ThrowOnInvalidCharacters(); static string ThrowOnInvalidCharacters(this string name) {