fix timezone error, to use local timezone in both places

master
cskoven 5 years ago
parent 069866961d
commit 2dd38e80e8
  1. 3
      layout.go

@ -80,6 +80,7 @@ func (layout *Layout) Market(market *Market) string {
// and the list of given stock quotes. It returns formatted string with
// all the necessary markup.
func (layout *Layout) Quotes(quotes *Quotes) string {
zonename, _ := time.Now().In(time.Local).Zone()
if ok, err := quotes.Ok(); !ok { // If there was an error fetching stock quotes...
return err // then simply return the error string.
}
@ -89,7 +90,7 @@ func (layout *Layout) Quotes(quotes *Quotes) string {
Header string // Formatted header line.
Stocks []Stock // List of formatted stock quotes.
}{
time.Now().Format(`3:04:05pm PST`),
time.Now().Format(`3:04:05pm ` + zonename),
layout.Header(quotes.profile),
layout.prettify(quotes),
}

Loading…
Cancel
Save