From 2de0a40c6fbeb8ed2ef6343a85434512fb2eee16 Mon Sep 17 00:00:00 2001 From: Deluan Date: Mon, 12 Oct 2020 21:04:12 -0400 Subject: [PATCH] Fix Album size should be int64 --- model/album.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/model/album.go b/model/album.go index 9ab192e68..773a2c0de 100644 --- a/model/album.go +++ b/model/album.go @@ -27,7 +27,7 @@ type Album struct { OrderAlbumArtistName string `json:"orderAlbumArtistName"` CreatedAt time.Time `json:"createdAt"` UpdatedAt time.Time `json:"updatedAt"` - Size int `json:"size"` + Size int64 `json:"size"` } type Albums []Album