Merge pull request #565 from thelounge/astorije/439-case-insensitive-highlights

Make custom highlights case-insensitive
This commit is contained in:
Maxime Poulin 2016-08-17 12:49:55 -04:00 committed by GitHub
commit 36a21bacac

View file

@ -204,7 +204,7 @@ $(function() {
var template = "msg";
if (!data.msg.highlight && !data.msg.self && (type === "message" || type === "notice") && highlights.some(function(h) {
return data.msg.text.indexOf(h) > -1;
return data.msg.text.toLocaleLowerCase().indexOf(h.toLocaleLowerCase()) > -1;
})) {
data.msg.highlight = true;
}