From e2190444a8d8518d0ae505100520218945267406 Mon Sep 17 00:00:00 2001 From: reality Date: Wed, 24 Dec 2014 00:19:25 +0000 Subject: [PATCH] ye --- modules/quotes/commands.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/modules/quotes/commands.js b/modules/quotes/commands.js index 2f1ec54..ce010f2 100644 --- a/modules/quotes/commands.js +++ b/modules/quotes/commands.js @@ -18,7 +18,7 @@ var commands = function(dbot) { event.reply(dbot.t('quote_saved', { 'category': key, 'count': newCount, - 'link': '' + 'link': dbot.api.web.getUrl('/quotes/' + key) })); } else { event.reply(dbot.t('quote_saved', { @@ -114,7 +114,7 @@ var commands = function(dbot) { event.reply(dbot.t('removed_from', { 'quote': removedQuote, 'category': key, - 'link': '' + 'link': dbot.api.web.getUrl('/quotes/' + key) })); } else { event.reply(dbot.t('removed_from', { @@ -155,7 +155,7 @@ var commands = function(dbot) { event.reply(dbot.t('removed_from', { 'category': key, 'quote': quote, - 'link': '' + 'link': dbot.api.web.getUrl('/quotes/' + key) })); } else { event.reply(dbot.t('removed_from', { @@ -379,7 +379,7 @@ var commands = function(dbot) { if(_.has(dbot.modules, 'web')) { event.reply(dbot.t('quote_link', { 'category': key, - 'url': '' + 'url': dbot.api.web.getUrl('/quotes/' + key) })); } else { event.reply(dbot.t('web_not_configured'));