diff --git a/src/EllieBot/Modules/Administration/DangerousCommands/CleanupCommands.cs b/src/EllieBot/Modules/Administration/DangerousCommands/CleanupCommands.cs index 0d282d0..211c8c2 100644 --- a/src/EllieBot/Modules/Administration/DangerousCommands/CleanupCommands.cs +++ b/src/EllieBot/Modules/Administration/DangerousCommands/CleanupCommands.cs @@ -42,7 +42,7 @@ public partial class Administration [Cmd] [OwnerOnly] - public async Task LeaveUnkeptServers(int shardId = 0, int delay = 1000) + public async Task LeaveUnkeptServers(int shardId, int delay = 1000) { var keptGuildCount = await _svc.GetKeptGuildCount(); diff --git a/src/EllieBot/Modules/Administration/DangerousCommands/CleanupService.cs b/src/EllieBot/Modules/Administration/DangerousCommands/CleanupService.cs index b36d988..31469e2 100644 --- a/src/EllieBot/Modules/Administration/DangerousCommands/CleanupService.cs +++ b/src/EllieBot/Modules/Administration/DangerousCommands/CleanupService.cs @@ -45,7 +45,7 @@ public sealed class CleanupService : ICleanupService, IReadyExecutor, IEService private bool keepTriggered = false; - private async ValueTask InternalTriggerKeep((int shardId, int delay) data) + private async ValueTask InternalTriggerKeep((int, int) data) { var (shardId, delay) = data; diff --git a/src/EllieBot/Services/Impl/PubSub/JsonSeria.cs b/src/EllieBot/Services/Impl/PubSub/JsonSeria.cs index 413b8f8..25c6b96 100644 --- a/src/EllieBot/Services/Impl/PubSub/JsonSeria.cs +++ b/src/EllieBot/Services/Impl/PubSub/JsonSeria.cs @@ -7,6 +7,7 @@ public class JsonSeria : ISeria { private readonly JsonSerializerOptions _serializerOptions = new() { + IncludeFields = true, Converters = { new Rgba32Converter(),