# @return [Hash] A hash containing the current `:song` and `:artist`.
def current_track
response = @rdio.call('currentUser', {'extras' => 'lastSongPlayed'})
artist = response["result"]["lastSongPlayed"]["artist"]
song = response["result"]["lastSongPlayed"]["name"]
# @return [Hash] A hash containing the current `:song` and `:artist`.
def current_track
response = @rdio.call('currentUser', {'extras' => 'lastSongPlayed'})
artist = response["result"]["lastSongPlayed"]["artist"]
song = response["result"]["lastSongPlayed"]["name"]