Skip to content

Commit

Permalink
fix(): fail to parse collection that contain big integers
Browse files Browse the repository at this point in the history
Refering #16
  • Loading branch information
aubm committed Apr 27, 2016
1 parent e613602 commit 0c477da
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion postman/collection.go
Expand Up @@ -12,7 +12,7 @@ type Collection struct {
Description string `json:"description"`
Order []string `json:"order"`
Folders []Folder `json:"folders"`
Timestamp int `json:"timestamp"`
Timestamp int64 `json:"timestamp"`
Owner interface{} `json:"owner"`
RemoteLink string `json:"remoteLink"`
Public bool `json:"public"`
Expand Down
2 changes: 1 addition & 1 deletion postman/request.go
Expand Up @@ -15,7 +15,7 @@ type Request struct {
Method string `json:"method"`
Data []RequestData `json:"data"`
DataMode string `json:"dataMode"`
Version int `json:"version"`
Version int64 `json:"version"`
Tests string `json:"tests"`
CurrentHelper string `json:"currentHelper"`
HelperAttributes interface{} `json:"helperAttributes"`
Expand Down

0 comments on commit 0c477da

Please sign in to comment.