fix: forget array in Spotify struct
This commit is contained in:
parent
d1def640ca
commit
ad1556dbc0
1 changed files with 1 additions and 1 deletions
|
@ -112,7 +112,7 @@ type SpotifyItem struct {
|
||||||
|
|
||||||
type SpotifyPlaylist struct {
|
type SpotifyPlaylist struct {
|
||||||
Href string `json:"href"`
|
Href string `json:"href"`
|
||||||
Items SpotifyItem `json:"items"`
|
Items []SpotifyItem `json:"items"`
|
||||||
Limit int `json:"limit"`
|
Limit int `json:"limit"`
|
||||||
Next string `json:"next"`
|
Next string `json:"next"`
|
||||||
Offset int `json:"offset"`
|
Offset int `json:"offset"`
|
||||||
|
|
Loading…
Reference in a new issue