From bf3af22316ca28231d92e963b270e53715d8d871 Mon Sep 17 00:00:00 2001 From: Timon Ringwald Date: Mon, 15 Aug 2022 16:22:02 +0200 Subject: [PATCH] String() refactor --- torrent.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/torrent.go b/torrent.go index 0f57f4f..eda77ec 100644 --- a/torrent.go +++ b/torrent.go @@ -26,7 +26,7 @@ func (t Torrent) String() string { t.Leechers, t.Downloads, t.Trusted, - t.Time, + t.Time.Format("2006-01-02 15:04:05"), ) }