From 63d9b411aea89c7b4dcfe24bd7cbbc41fb08ed28 Mon Sep 17 00:00:00 2001 From: alyssa Date: Thu, 24 Apr 2025 10:28:45 +0000 Subject: [PATCH] fix(bot): only update discord status when gateway is enabled --- 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 46e4e4a1..c0b33c99 100644 --- a/PluralKit.Bot/Bot.cs +++ b/PluralKit.Bot/Bot.cs @@ -282,7 +282,7 @@ public class Bot _logger.Debug("Running once-per-minute scheduled tasks"); // Check from a new custom status from Redis and update Discord accordingly - if (true) + if (!_config.DisableGateway) { var newStatus = await _redis.Connection.GetDatabase().StringGetAsync("pluralkit:botstatus"); if (newStatus != CustomStatusMessage)