From e4ad08e15c02213ef2b3df8e45277eaac2f68d28 Mon Sep 17 00:00:00 2001 From: barelyprofessional <150058423+barelyprofessional@users.noreply.github.com> Date: Mon, 21 Apr 2025 22:09:43 -0500 Subject: [PATCH] Added image last seen to the output --- 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 ecfa2dd..481a415 100644 --- a/KfChatDotNetBot/Commands/ImageCommands.cs +++ b/KfChatDotNetBot/Commands/ImageCommands.cs @@ -114,7 +114,7 @@ public class ListImageCommand : ICommand foreach (var image in images) { i++; - result += $"[br]{i}: {image.Url}"; + result += $"[br]{i}: {image.Url} (Last seen {image.LastSeen:yyyy-MM-dd HH:mm:ss zz})"; } await botInstance.SendChatMessagesAsync(result.FancySplitMessage(partSeparator: "[br]"),