Commit d2933b89 authored by JC Brand's avatar JC Brand

Ignore messages without a body

parent 705c0438
...@@ -63,8 +63,11 @@ ...@@ -63,8 +63,11 @@
return false; return false;
} }
var room = converse.chatboxes.get(room_jid); var room = converse.chatboxes.get(room_jid);
var body = $message.children('body').text(); var $body = $message.children('body');
var mentioned = (new RegExp("\\b"+room.get('nick')+"\\b")).test(body); if (!$body.length) {
return false;
}
var mentioned = (new RegExp("\\b"+room.get('nick')+"\\b")).test($body.text());
notify_all = notify_all === true || (_.isArray(notify_all) && _.contains(notify_all, room_jid)); notify_all = notify_all === true || (_.isArray(notify_all) && _.contains(notify_all, room_jid));
if (sender === room.get('nick') || (!notify_all && !mentioned)) { if (sender === room.get('nick') || (!notify_all && !mentioned)) {
return false; return false;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment