3
0
mirror of https://github.com/ergochat/ergo.git synced 2024-11-10 22:19:31 +01:00

server-time: convert local time to UTC before using it, fixes #94

This commit is contained in:
Martin Lindhe 2017-02-07 01:37:32 +01:00
parent 9e65d9b87e
commit 730d283201

View File

@ -550,10 +550,11 @@ var (
func (client *Client) Send(tags *map[string]ircmsg.TagValue, prefix string, command string, params ...string) error {
// attach server-time
if client.capabilities[ServerTime] {
t := time.Now().UTC().Format("2006-01-02T15:04:05.999Z")
if tags == nil {
tags = ircmsg.MakeTags("time", time.Now().Format("2006-01-02T15:04:05.999Z"))
tags = ircmsg.MakeTags("time", t)
} else {
(*tags)["time"] = ircmsg.MakeTagValue(time.Now().Format("2006-01-02T15:04:05.999Z"))
(*tags)["time"] = ircmsg.MakeTagValue(t)
}
}