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

This commit is contained in:
JC Brand 2018-04-22 04:26:35 +02:00
parent 74f9952b24
commit aacfe3b66b

View File

@ -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
*/