3
0
mirror of https://github.com/reality/dbot.git synced 2025-01-23 18:44:14 +01:00

string output for autoTitle

This commit is contained in:
reality 2013-05-21 17:48:31 +00:00
parent 1f426fa722
commit 818f6937ef

View File

@ -124,7 +124,7 @@ var link = function(dbot) {
} }
if(!handlerFound) { if(!handlerFound) {
this.api.getTitle(urlMatches[0], function(title) { this.api.getTitle(urlMatches[0], function(title) {
event.reply(title); event.reply(dbot.t('link', { 'link': title } ));
}); });
} }
} }