From 05c2fb444fc48d327e0ac38f0fbec50f24be4346 Mon Sep 17 00:00:00 2001 From: Hubert Hirtz Date: Sat, 22 Aug 2020 15:08:58 +0200 Subject: Fix topic time timezone --- app.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.go b/app.go index bd84e1d..78d3aea 100644 --- a/app.go +++ b/app.go @@ -397,7 +397,7 @@ func (app *App) handleInput(buffer, content string) { if who == "" { line = fmt.Sprintf("\x0314Topic: %s", topic) } else { - line = fmt.Sprintf("\x0314Topic (by %s, %s): %s", who, at.Format("Mon Jan 2 15:04:05"), topic) + line = fmt.Sprintf("\x0314Topic (by %s, %s): %s", who, at.Local().Format("Mon Jan 2 15:04:05"), topic) } app.win.AddLine(buffer, ui.NewLineNow("--", line)) } else { -- cgit v1.2.3