Commit aacfe3b6 authored by JC Brand's avatar JC Brand

Don't show MUC CSN if from myself. fixes #1026

parent 74f9952b
......@@ -585,6 +585,13 @@
return this;
},
showChatStateNotification (message) {
if (message.get('sender') === 'me') {
return;
}
return _converse.ChatBoxView.prototype.showChatStateNotification.apply(this, arguments);
},
createOccupantsView () {
/* Create the ChatRoomOccupantsView Backbone.NativeView
*/
......
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