summaryrefslogtreecommitdiff
path: root/app.go
diff options
context:
space:
mode:
authorHubert Hirtz <hubert@hirtzfr.eu>2020-08-22 15:08:58 +0200
committerHubert Hirtz <hubert@hirtzfr.eu>2020-08-22 15:08:58 +0200
commit05c2fb444fc48d327e0ac38f0fbec50f24be4346 (patch)
tree40947bb4e26632a42e1b160503fe18111d1194de /app.go
parentFix /topic only accepting one word (diff)
Fix topic time timezone
Diffstat (limited to 'app.go')
-rw-r--r--app.go2
1 files changed, 1 insertions, 1 deletions
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 {