1
Fork 0

Use UTC dates in token issuedAt field.

This commit is contained in:
Juliusz Chroboczek 2024-05-08 17:25:28 +02:00
parent b925bae5de
commit ea4086243b
1 changed files with 1 additions and 1 deletions

View File

@ -1768,7 +1768,7 @@ func handleClientMessage(c *webClient, m clientMessage) error {
tok.IssuedBy = &user tok.IssuedBy = &user
} }
now := time.Now() now := time.Now().UTC()
tok.IssuedAt = &now tok.IssuedAt = &now
new, err := token.Update(tok, "") new, err := token.Update(tok, "")