diff --git a/modules/lastfm/lastfm.js b/modules/lastfm/lastfm.js index f07f293..9ae7f23 100644 --- a/modules/lastfm/lastfm.js +++ b/modules/lastfm/lastfm.js @@ -16,7 +16,7 @@ var lastfm = function(dbot) { dbot.api.profile.getProfile(server, nick, function(err, user, profile) { if(user) { if(profile && _.has(profile.profile, 'lastfm')) { - callback(user, profile.profile.lastfm); + callback(user, profile.profile.lastfm.toLowerCase();); } else { callback(user, null); }