aboutsummaryrefslogtreecommitdiffhomepage
path: root/model
diff options
context:
space:
mode:
authorGravatar Frédéric Guillot <fred@miniflux.net>2018-03-14 20:09:06 -0700
committerGravatar Frédéric Guillot <fred@miniflux.net>2018-03-14 20:09:06 -0700
commit482785c5e6a1acdba8750b99b13288ad62c6d29d (patch)
tree896ff8cd93f75aebad38825f0917ac5e3839b670 /model
parentfec391a336697a6536be9a04cee55b2f85da9a5d (diff)
Convert enclosure size field to bigint
Diffstat (limited to 'model')
-rw-r--r--model/enclosure.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/model/enclosure.go b/model/enclosure.go
index 5a52f78..6de1af7 100644
--- a/model/enclosure.go
+++ b/model/enclosure.go
@@ -11,7 +11,7 @@ type Enclosure struct {
EntryID int64 `json:"entry_id"`
URL string `json:"url"`
MimeType string `json:"mime_type"`
- Size int `json:"size"`
+ Size int64 `json:"size"`
}
// EnclosureList represents a list of attachments.