Skip to content

Commit

Permalink
chore: use RFC3339Nano
Browse files Browse the repository at this point in the history
  • Loading branch information
jonas-jonas committed Nov 29, 2022
1 parent 961b903 commit fa9ae5e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion courier/message.go
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ func (m Message) PageToken() string {
}

func (m Message) DefaultPageToken() string {
return fmt.Sprintf("id=%s/created_at=%s", uuid.Nil.String(), time.Date(9999, 12, 31, 23, 59, 59, 0, time.UTC).Format(time.RFC3339))
return fmt.Sprintf("id=%s/created_at=%s", uuid.Nil.String(), time.Date(9999, 12, 31, 23, 59, 59, 0, time.UTC).Format(time.RFC3339Nano))
}

func (m Message) TableName(ctx context.Context) string {
Expand Down

0 comments on commit fa9ae5e

Please sign in to comment.