From b47694edc1cf2318187f2f667ab0320a3a583138 Mon Sep 17 00:00:00 2001 From: Ske Date: Wed, 22 Jun 2022 19:00:00 +0200 Subject: [PATCH] fix: include cache in redis-received events --- PluralKit.Bot/Bot.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PluralKit.Bot/Bot.cs b/PluralKit.Bot/Bot.cs index cfcfe589..f8d21342 100644 --- a/PluralKit.Bot/Bot.cs +++ b/PluralKit.Bot/Bot.cs @@ -73,7 +73,7 @@ public class Bot } }; - _services.Resolve().OnEventReceived += (e) => OnEventReceivedInner(e.Item1, e.Item2); + _services.Resolve().OnEventReceived += (e) => OnEventReceived(e.Item1, e.Item2); // Init the shard stuff _services.Resolve().Init();