From 87feccc29d757298f836f10ef3e741b6e40fb868 Mon Sep 17 00:00:00 2001 From: Jake Date: Fri, 24 Mar 2023 21:16:23 +0100 Subject: [PATCH] fix formatting --- PluralKit.Bot/Commands/Checks.cs | 2 +- PluralKit.Bot/Proxy/ProxyService.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/PluralKit.Bot/Commands/Checks.cs b/PluralKit.Bot/Commands/Checks.cs index f2fa3482..a2be32cf 100644 --- a/PluralKit.Bot/Commands/Checks.cs +++ b/PluralKit.Bot/Commands/Checks.cs @@ -247,7 +247,7 @@ public class Checks { _proxy.ShouldProxy(channel, msg, context); _matcher.TryMatch(context, autoproxySettings, members, out var match, msg.Content, msg.Attachments.Length > 0, true, ctx.Config.CaseSensitiveProxyTags); - + var canProxy = await _proxy.CanProxy(channel, msg, context); if (canProxy != null) { diff --git a/PluralKit.Bot/Proxy/ProxyService.cs b/PluralKit.Bot/Proxy/ProxyService.cs index dcef58ee..9e320d9c 100644 --- a/PluralKit.Bot/Proxy/ProxyService.cs +++ b/PluralKit.Bot/Proxy/ProxyService.cs @@ -87,7 +87,7 @@ public class ProxyService { if (ctx.ProxyErrorMessageEnabled) throw new PKError(canProxy); - + return false; }