commit 05c2fb4

Hubert Hirtz  ·  2020-08-22 13:08:58 +0000 UTC
parent 40f3e34
Fix topic time timezone
1 files changed,  +1, -1
M app.go
M app.go
+1, -1
1@@ -397,7 +397,7 @@ func (app *App) handleInput(buffer, content string) {
2 			if who == "" {
3 				line = fmt.Sprintf("\x0314Topic: %s", topic)
4 			} else {
5-				line = fmt.Sprintf("\x0314Topic (by %s, %s): %s", who, at.Format("Mon Jan 2 15:04:05"), topic)
6+				line = fmt.Sprintf("\x0314Topic (by %s, %s): %s", who, at.Local().Format("Mon Jan 2 15:04:05"), topic)
7 			}
8 			app.win.AddLine(buffer, ui.NewLineNow("--", line))
9 		} else {