소스 검색

Bugfix. contact is a map, not a Backbone.Model

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

+ 1 - 1
src/converse-notification.js

@@ -133,7 +133,7 @@
                 /* Creates an HTML5 Notification to inform of a change in a
                  * contact's chat state.
                  */
-                if (_.contains(converse.chatstate_notification_blacklist, contact.get('jid'))) {
+                if (_.contains(converse.chatstate_notification_blacklist, contact.jid)) {
                     // Don't notify if the user is being ignored.
                     return;
                 }