diff --git a/lib/rockstar/artist.rb b/lib/rockstar/artist.rb index e859ff9..6ddaf10 100644 --- a/lib/rockstar/artist.rb +++ b/lib/rockstar/artist.rb @@ -148,6 +148,11 @@ def top_albums(force=false) get_instance("artist.getTopAlbums", :top_albums, :album, {:artist => @name}, force) end + def top_albums(force=false) + get_instance("artist.getAlbums", :albums, :album, {:artist => @name}, force) + end + + def top_tags(force=false) get_instance("artist.getTopTags", :top_tags, :tag, {:artist => @name}, force) end