3
0
mirror of https://github.com/reality/dbot.git synced 2024-12-25 20:22:39 +01:00

Fixed case-sensitivity with ~link

This commit is contained in:
Joe MacMahon 2012-01-08 21:58:40 +00:00
parent 9b00578a60
commit d5526cfe4b

View File

@ -153,7 +153,7 @@ var quotes = function(dbot) {
}, },
'~link': function(data, params) { '~link': function(data, params) {
if(params[1] === undefined || !quotes.hasOwnProperty(params[1])) { if(params[1] === undefined || !quotes.hasOwnProperty(params[1].toLowerCase())) {
dbot.say(data.channel, 'Syntax error. Commence incineration.'); dbot.say(data.channel, 'Syntax error. Commence incineration.');
} else { } else {
dbot.say(data.channel, 'Link to "'+params[1]+'" - http://nc.no.de:443/quotes/'+params[1]); dbot.say(data.channel, 'Link to "'+params[1]+'" - http://nc.no.de:443/quotes/'+params[1]);