diff --git a/modules/quotes.js b/modules/quotes.js index 371241b..abd2069 100644 --- a/modules/quotes.js +++ b/modules/quotes.js @@ -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')); }