Skip to content
This repository has been archived by the owner on May 14, 2020. It is now read-only.

Commit

Permalink
format time as UTC in ListImages
Browse files Browse the repository at this point in the history
  • Loading branch information
kdomanski committed Oct 29, 2015
1 parent 83aa7b0 commit 2b3b19e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion userconfig.go
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ func (u *userDB) ListImages(channel string) ([]imageListElement, error) {
return nil, err
}

ver.timestamp = time.Unix(timestamp, 0)
ver.timestamp = time.Unix(timestamp, 0).UTC()
image.Version = ver.String()
out = append(out, image)
}
Expand Down

0 comments on commit 2b3b19e

Please sign in to comment.