Fix possible XSS issue with chat filters

This commit is contained in:
calzoneman 2014-05-13 01:02:38 -05:00
parent 79f7e96921
commit 89939682ce

View file

@ -3040,7 +3040,8 @@ Channel.prototype.filterMessage = function (msg) {
}
// Recombine the message
return parts.join("");
msg = parts.join("");
return XSS.sanitizeHTML(msg);
};
/**