From aab3a04d0c4ddbf97d589ba9048a539c6d7186e9 Mon Sep 17 00:00:00 2001 From: Michael Muré Date: Thu, 25 Jun 2020 23:18:17 +0200 Subject: bug: harmonize how time are used, fix some issues in command special formats This assume that the convertion from time.Time <--> Unix timestamp is lossless which seems to be. --- termui/bug_table.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'termui/bug_table.go') diff --git a/termui/bug_table.go b/termui/bug_table.go index 2913ac80..e57a2b15 100644 --- a/termui/bug_table.go +++ b/termui/bug_table.go @@ -4,7 +4,6 @@ import ( "bytes" "fmt" "strings" - "time" "github.com/MichaelMure/go-term-text" "github.com/awesome-gocui/gocui" @@ -315,7 +314,7 @@ func (bt *bugTable) render(v *gocui.View, maxX int) { authorDisplayName = excerpt.LegacyAuthor.DisplayName() } - lastEditTime := time.Unix(excerpt.EditUnixTime, 0) + lastEditTime := excerpt.EditTime() id := text.LeftPadMaxLine(excerpt.Id.Human(), columnWidths["id"], 1) status := text.LeftPadMaxLine(excerpt.Status.String(), columnWidths["status"], 1) -- cgit