|
@@ -65,7 +65,7 @@ func (criteria OrderListCriteria) Values() map[string]string {
|
|
|
}
|
|
|
|
|
|
if criteria.Until != nil && !criteria.Until.IsZero() {
|
|
|
- values["until"] = criteria.Until.Format(time.RFC3339)
|
|
|
+ values["until"] = criteria.Until.In(time.UTC).Format(time.RFC3339)
|
|
|
}
|
|
|
|
|
|
if criteria.Nested {
|
|
@@ -79,7 +79,7 @@ func (criteria OrderListCriteria) Values() map[string]string {
|
|
|
}
|
|
|
|
|
|
values["limit"] = fmt.Sprintf("%d", criteria.Limit)
|
|
|
- values["after"] = criteria.After.Format(time.RFC3339)
|
|
|
+ values["after"] = criteria.After.In(time.UTC).Format(time.RFC3339)
|
|
|
values["direction"] = "asc"
|
|
|
|
|
|
return values
|