Got you some extra plus

This commit is contained in:
Sam Nicholls 2012-12-05 19:17:57 +00:00
parent c07b0c60f3
commit 96225c59ec

View File

@ -186,7 +186,7 @@ var quotes = function(dbot) {
'~link': function(event) {
var key = event.params[1].trim().toLowerCase();
if(quotes.hasOwnProperty(key)) {
event.reply(dbot.t('quote_link', {'category': key}) + ' - ' dbot.webUrl + ':' dbot.webPort + '/quotes/' + key);
event.reply(dbot.t('quote_link', {'category': key}) + ' - ' + dbot.webUrl + ':' + dbot.webPort + '/quotes/' + key);
} else {
event.reply(dbot.t('category_not_found'));
}