Alexey Kim 1 tuần trước cách đây
mục cha
commit
88343c5967
1 tập tin đã thay đổi với 2 bổ sung2 xóa
  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