From 964467464cc6463550405dfa60c46095c8a7e0fc Mon Sep 17 00:00:00 2001 From: Luke Slater Date: Sun, 27 Jul 2014 14:05:21 +0100 Subject: [PATCH] [Close #619] --- modules/lastfm/lastfm.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); }