diff --git a/lastfm/tag.go b/lastfm/tag.go index a19a878..1cd50b2 100644 --- a/lastfm/tag.go +++ b/lastfm/tag.go @@ -8,7 +8,7 @@ type tagApi struct { func (api tagApi) GetInfo(args map[string]interface{}) (result TagGetInfo, err error) { defer func() { appendCaller(err, "lastfm.Tag.GetInfo") }() err = callGet("tag.getinfo", api.params, args, &result, P{ - "plain": []string{"lang", "artist", "mbid"}, + "plain": []string{"lang", "tag"}, }) return }