Consider existing entries when informing the user what they tagged with

This commit is contained in:
barelyprofessional
2026-05-10 16:42:19 -05:00
parent 8d06b75a57
commit ca322bde4d

View File

@@ -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);
}
}