From ca322bde4daa94fe720e446cc4583ac56d67e3b4 Mon Sep 17 00:00:00 2001 From: barelyprofessional <150058423+barelyprofessional@users.noreply.github.com> Date: Sun, 10 May 2026 16:42:19 -0500 Subject: [PATCH] Consider existing entries when informing the user what they tagged with --- KfChatDotNetBot/Commands/ImageCommands.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/KfChatDotNetBot/Commands/ImageCommands.cs b/KfChatDotNetBot/Commands/ImageCommands.cs index 7d18f09..19967ac 100644 --- a/KfChatDotNetBot/Commands/ImageCommands.cs +++ b/KfChatDotNetBot/Commands/ImageCommands.cs @@ -99,7 +99,7 @@ public class AddImageTagsCommand : ICommand image.TagList = image.TagList.Concat(tags).Distinct().ToList(); await db.SaveChangesAsync(ctx); await botInstance.SendChatMessageAsync( - $"{user.FormatUsername()}, updated tags for image ID {id} with {tags.Humanize()}", true); + $"{user.FormatUsername()}, updated tags for image ID {id} with {image.TagList.Humanize()}", true); } }