From 0716848c4a4dab92bd75d5b49c66e9b428a4e6bc Mon Sep 17 00:00:00 2001 From: Timon Ringwald Date: Mon, 15 Aug 2022 14:58:24 +0200 Subject: [PATCH] String() improvement --- torrent.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/torrent.go b/torrent.go index dbc681d..0f57f4f 100644 --- a/torrent.go +++ b/torrent.go @@ -37,6 +37,6 @@ func (t Torrent) StringWithoutTitle() string { t.Leechers, t.Downloads, t.Trusted, - t.Time, + t.Time.Format("2006-01-02 15:04:05"), ) }