Don't show MUC CSN if from myself. fixes #1026
This commit is contained in:
parent
74f9952b24
commit
aacfe3b66b
@ -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
|
||||
*/
|
||||
|
Loading…
Reference in New Issue
Block a user