diff --git a/KfChatDotNetBot/Commands/ImageCommands.cs b/KfChatDotNetBot/Commands/ImageCommands.cs index d64a227..71963fd 100644 --- a/KfChatDotNetBot/Commands/ImageCommands.cs +++ b/KfChatDotNetBot/Commands/ImageCommands.cs @@ -117,7 +117,7 @@ public class ListImageCommand : ICommand { i++; var ts = DateTimeOffset.UtcNow - image.LastSeen; - result += $"[br]{i}: {image.Url} (Last seen {ts.TotalHours:N0}h{ts.Minutes:N0}m{ts.Seconds:N0}s ago)"; + result += $"[br]{i}: {image.Url} (Last seen {ts.TotalDays:N0}d{ts.Hours:N0}h{ts.Minutes:N0}m{ts.Seconds:N0}s ago)"; } await botInstance.SendChatMessagesAsync(result.FancySplitMessage(partSeparator: "[br]"),