lets try that

This commit is contained in:
reality 2013-10-23 10:00:40 +00:00
parent 9369fd8d05
commit 4537651367

View File

@ -39,8 +39,8 @@ var youtube = function(dbot) {
'seconds': seconds 'seconds': seconds
}); });
var link = v.link[0].href.match(this.LinkRegex) var link = v.link[0].href.match(this.LinkRegex);
if(!_.isUndefined(link)) { if(link) {
res += ' - http://youtu.be/' + link[2]; res += ' - http://youtu.be/' + link[2];
} }