Strip control characters from notifications

This commit is contained in:
Pavel Djundik 2016-12-18 18:06:47 +02:00 committed by Pavel Djundik
parent 3c8179fda1
commit 8fff5ee829

View file

@ -1136,7 +1136,7 @@ $(function() {
if (msg.type === "message") {
title += " says:";
}
body = msg.text.replace(/\x02|\x1D|\x1F|\x16|\x0F|\x03(?:[0-9]{1,2}(?:,[0-9]{1,2})?)?/g, "").trim();
body = msg.text.replace(/\x03(?:[0-9]{1,2}(?:,[0-9]{1,2})?)?|[\x00-\x1F]|\x7F/g, "").trim();
}
try {