소스 검색

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

JC Brand 7 년 전
부모
커밋
aacfe3b66b
1개의 변경된 파일7개의 추가작업 그리고 0개의 파일을 삭제
  1. 7 0
      src/converse-muc-views.js

+ 7 - 0
src/converse-muc-views.js

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