patch from kseistrup fixes #1

This commit is contained in:
Miguel Freitas 2014-01-02 18:22:20 -02:00
parent 35822222a3
commit 3835549c20

View File

@ -159,6 +159,10 @@ function htmlFormatMsg( msg, output, mentions ) {
}
var httpindex = msg.indexOf("http://");
var httpsindex = msg.indexOf("https://");
if (httpsindex != -1) {
httpindex = httpsindex;
}
if( httpindex != -1 ) {
output.append(msg.substr(0, httpindex));
tmp = msg.substring(httpindex);