소스 검색

fix. didn't remove event listener when invoke destroyed

matrixbirds 5 년 전
부모
커밋
69be0170dc
3개의 변경된 파일3개의 추가작업 그리고 1개의 파일을 삭제
  1. 1
    0
      lib/RtcEngine.native.js
  2. 1
    1
      lib/RtcEngine.native.js.map
  3. 1
    0
      src/RtcEngine.native.ts

+ 1
- 0
lib/RtcEngine.native.js 파일 보기

@@ -329,6 +329,7 @@ class RtcEngine {
329 329
      * @return void
330 330
      */
331 331
     static destroy() {
332
+        Agora.removeAllListeners();
332 333
         return Agora.destroy();
333 334
     }
334 335
     /**

+ 1
- 1
lib/RtcEngine.native.js.map
파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
파일 보기


+ 1
- 0
src/RtcEngine.native.ts 파일 보기

@@ -379,6 +379,7 @@ class RtcEngine {
379 379
      * @return void
380 380
      */
381 381
     public static destroy() {
382
+        Agora.removeAllListeners();
382 383
         return Agora.destroy();
383 384
     }
384 385