From 7520bc1fa0b3b5b92d716a76fe9e508dfbf2749f Mon Sep 17 00:00:00 2001 From: defnotken Date: Wed, 29 Oct 2025 18:09:06 -0500 Subject: [PATCH] nullable --- .../LightlessSyncServices/Discord/MareModule.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/LightlessSyncServer/LightlessSyncServices/Discord/MareModule.cs b/LightlessSyncServer/LightlessSyncServices/Discord/MareModule.cs index ee5a1a2..0323888 100644 --- a/LightlessSyncServer/LightlessSyncServices/Discord/MareModule.cs +++ b/LightlessSyncServer/LightlessSyncServices/Discord/MareModule.cs @@ -150,8 +150,8 @@ public class LightlessModule : InteractionModuleBase [SlashCommand("serviceunban", "ADMIN ONLY: Unban a user by their discord ID or user ID [CHOOSE ONE ONLY]")] public async Task ServiceUnban( - [Summary("discord_id", "Discord ID to unban")] string? discordId, - [Summary("uid", "UID to unban")] string? uid + [Summary("discord_id", "Discord ID to unban")] string? discordId = null, + [Summary("uid", "UID to unban")] string? uid = null ) { _logger.LogInformation("SlashCommand:{userId}:{Method}:{params}",