Fix Album size should be int64

This commit is contained in:
Deluan 2020-10-12 21:04:12 -04:00
parent 5417031d79
commit 2de0a40c6f
1 changed files with 1 additions and 1 deletions

View File

@ -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