Strip control codes from notifications

This commit is contained in:
sprusr 2016-02-28 13:36:32 +02:00 committed by Pavel Djundik
parent 3b17b00072
commit 4e6e4e10d2

View File

@ -702,7 +702,7 @@ $(function() {
title += " (" + button.text().trim() + ")"; title += " (" + button.text().trim() + ")";
} }
title += " says:"; title += " says:";
body = msg.text.trim(); body = msg.text.replace(/\x02|\x1D|\x1F|\x16|\x0F|\x03(?:[0-9]{1,2}(?:,[0-9]{1,2})?)?/, "").trim();
} }
var notify = new Notification(title, { var notify = new Notification(title, {