diff options
author | Hubert Hirtz <hubert@hirtzfr.eu> | 2020-08-22 15:08:58 +0200 |
---|---|---|
committer | Hubert Hirtz <hubert@hirtzfr.eu> | 2020-08-22 15:08:58 +0200 |
commit | 05c2fb444fc48d327e0ac38f0fbec50f24be4346 (patch) | |
tree | 40947bb4e26632a42e1b160503fe18111d1194de /app.go | |
parent | Fix /topic only accepting one word (diff) |
Fix topic time timezone
Diffstat (limited to 'app.go')
-rw-r--r-- | app.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 { |