Преглед изворни кода

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