Skip to content

Commit

Permalink
Fix time format
Browse files Browse the repository at this point in the history
- RFC3339 to ISO 8601
  • Loading branch information
window9u committed Feb 17, 2025
1 parent 3c29e62 commit 3666d48
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/rpc/webhook/event.go
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ func buildEventWebhookBody(docKey string, webhookType types.EventWebhookType) ([
Type: webhookType,
Attributes: types.EventWebhookAttribute{
Key: docKey,
IssuedAt: gotime.Now().Format(gotime.RFC3339),
IssuedAt: gotime.Now().UTC().Format("2006-01-02T15:04:05.000Z"),
},
}

Expand Down

0 comments on commit 3666d48

Please sign in to comment.