From f4523b99f2fe55a3467e1f8240aa4791e2f2a8b1 Mon Sep 17 00:00:00 2001 From: Cal Corum Date: Wed, 28 Jan 2026 16:40:03 -0600 Subject: [PATCH] Clear confirmation message content on delete result MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Prevents double emoji display by clearing the "✅ Confirmed!" content when showing the delete result embed. Co-Authored-By: Claude Opus 4.5 --- VERSION | 2 +- views/custom_commands.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/VERSION b/VERSION index 0bd6cbc..1eb56ea 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2.28.2 +2.28.3 diff --git a/views/custom_commands.py b/views/custom_commands.py index 5033504..924df63 100644 --- a/views/custom_commands.py +++ b/views/custom_commands.py @@ -607,14 +607,14 @@ class SingleCommandManagementView(BaseView): title="Delete Failed", description=f"Failed to delete command: {e}" ) - await interaction.edit_original_response(embed=embed, view=None) + await interaction.edit_original_response(content=None, embed=embed, view=None) else: # User cancelled embed = EmbedTemplate.info( title="Deletion Cancelled", description=f"The command `/cc {self.command.name}` was not deleted." ) - await interaction.edit_original_response(embed=embed, view=None) + await interaction.edit_original_response(content=None, embed=embed, view=None) class CustomCommandListView(PaginationView):