Skip to content

Commit

Permalink
Fix Album size should be int64
Browse files Browse the repository at this point in the history
  • Loading branch information
deluan committed Oct 13, 2020
1 parent 5417031 commit 2de0a40
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion model/album.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 2de0a40

Please sign in to comment.