summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--ui/buffers.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/ui/buffers.go b/ui/buffers.go
index 129a10d..4f382dd 100644
--- a/ui/buffers.go
+++ b/ui/buffers.go
@@ -315,6 +315,7 @@ func (bs *BufferList) AddLine(title string, highlight bool, line Line) {
b := &bs.list[idx]
n := len(b.lines)
line.Body = strings.TrimRight(line.Body, "\t ")
+ line.At = line.At.UTC()
if line.Mergeable && n != 0 && b.lines[n-1].Mergeable {
l := &b.lines[n-1]