Skip to content

Commit aacfe3b

Browse files
committed
Don't show MUC CSN if from myself. fixes #1026
1 parent 74f9952 commit aacfe3b

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

src/converse-muc-views.js

+7
Original file line numberDiff line numberDiff line change
@@ -585,6 +585,13 @@
585585
return this;
586586
},
587587

588+
showChatStateNotification (message) {
589+
if (message.get('sender') === 'me') {
590+
return;
591+
}
592+
return _converse.ChatBoxView.prototype.showChatStateNotification.apply(this, arguments);
593+
},
594+
588595
createOccupantsView () {
589596
/* Create the ChatRoomOccupantsView Backbone.NativeView
590597
*/

0 commit comments

Comments
 (0)