Skip to content

Commit

Permalink
Merge pull request #17 from herver/patch-1
Browse files Browse the repository at this point in the history
Fix account creation date display
  • Loading branch information
guitmz authored Oct 29, 2018
2 parents 7b5ab39 + a1a2975 commit f5bf928
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/n26/n26.go
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ func main() {
} else {
data := [][]string{
{
time.Unix(status.Created, 0).String(),
time.Unix(status.Created/1000, 0).String(),
},
}
NewTableWriter().WriteData([]string{"Created"}, data)
Expand Down

0 comments on commit f5bf928

Please sign in to comment.