Browse Source

patch from kseistrup fixes #1

master
Miguel Freitas 11 years ago
parent
commit
3835549c20
  1. 4
      twister_formatpost.js

4
twister_formatpost.js

@ -159,6 +159,10 @@ function htmlFormatMsg( msg, output, mentions ) { @@ -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);

Loading…
Cancel
Save