Private
Public Access
1
0

Ensure all dates returned are ISO8601

This commit is contained in:
James Magahern
2024-01-05 16:26:19 -08:00
parent a8043e53b3
commit 831636216d
8 changed files with 53 additions and 24 deletions

View File

@@ -85,7 +85,7 @@ func (p *Prompt) receiveMessage(guid string, text string) {
Guid: uuid.New().String(),
Sender: &conversation.Participants[0],
Text: text,
Date: time.Now(),
Date: model.Date(time.Now()),
}
p.server.ReceiveMessage(conversation, message)