소스 검색

CLOSE_CHAT action calls notifyChatUpdated with the isOpen flag set to false, previously was always true even when closing

j8
HippyJim 3 년 전
부모
커밋
8dbb392d85
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1
    1
      react/features/chat/middleware.js

+ 1
- 1
react/features/chat/middleware.js 파일 보기

@@ -104,7 +104,7 @@ MiddlewareRegistry.register(store => next => action => {
104 104
         unreadCount = 0;
105 105
 
106 106
         if (typeof APP !== 'undefined') {
107
-            APP.API.notifyChatUpdated(unreadCount, true);
107
+            APP.API.notifyChatUpdated(unreadCount, false);
108 108
         }
109 109
 
110 110
         dispatch(setActiveModalId());

Loading…
취소
저장