diff options
author | Frédéric Guillot <fred@miniflux.net> | 2018-03-14 20:09:06 -0700 |
---|---|---|
committer | Frédéric Guillot <fred@miniflux.net> | 2018-03-14 20:09:06 -0700 |
commit | 482785c5e6a1acdba8750b99b13288ad62c6d29d (patch) | |
tree | 896ff8cd93f75aebad38825f0917ac5e3839b670 /reader/json | |
parent | fec391a336697a6536be9a04cee55b2f85da9a5d (diff) |
Convert enclosure size field to bigint
Diffstat (limited to 'reader/json')
-rw-r--r-- | reader/json/json.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/reader/json/json.go b/reader/json/json.go index 81b38f6..2c812ab 100644 --- a/reader/json/json.go +++ b/reader/json/json.go @@ -47,7 +47,7 @@ type jsonAttachment struct { URL string `json:"url"` MimeType string `json:"mime_type"` Title string `json:"title"` - Size int `json:"size_in_bytes"` + Size int64 `json:"size_in_bytes"` Duration int `json:"duration_in_seconds"` } |