Alexey Kim 1 vecka sedan
förälder
incheckning
88343c5967
1 ändrade filer med 2 tillägg och 2 borttagningar
  1. 2 2
      market.go

+ 2 - 2
market.go

@@ -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