read title even when over multiple lines

This commit is contained in:
Luke Slater 2012-06-03 21:17:25 +01:00
parent 181c3a2628
commit e5a9142384

View File

@ -20,6 +20,7 @@ var link = function(dbot) {
request(link, function (error, response, body) {
if(!error && response.statusCode == 200) {
body = body.replace(/(\r\n|\n\r|\n)/gm, " ");
var title = body.valMatch(/<title>(.*)<\/title>/, 2);
if(title) {
event.reply(title[1]);