Skip to content

Commit

Permalink
Merge pull request #47 from sredni/master
Browse files Browse the repository at this point in the history
Integer overflow in music item
  • Loading branch information
Davincible authored Feb 23, 2023
2 parents 8c3282b + 914bc72 commit 52bd9a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion media.go
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ type Item struct {
HasLyrics bool `json:"has_lyrics"`
AudioAssetID string `json:"audio_asset_id"`
IgArtist struct {
Pk int `json:"pk"`
Pk int64 `json:"pk"`
Username string `json:"username"`
FullName string `json:"full_name"`
IsPrivate bool `json:"is_private"`
Expand Down

0 comments on commit 52bd9a8

Please sign in to comment.