소스 검색

fix(android) fix crash when staring ongoing notification

factor2
Saúl Ibarra Corretgé 9 달 전
부모
커밋
f59d04586c
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1
    1
      android/sdk/src/main/java/org/jitsi/meet/sdk/JitsiMeetOngoingConferenceService.java

+ 1
- 1
android/sdk/src/main/java/org/jitsi/meet/sdk/JitsiMeetOngoingConferenceService.java 파일 보기

@@ -215,7 +215,7 @@ public class JitsiMeetOngoingConferenceService extends Service implements Ongoin
215 215
                 }
216 216
             }
217 217
 
218
-            Notification notification = OngoingNotification.buildOngoingConferenceNotification(isAudioMuted, this, tapBackActivity);
218
+            Notification notification = OngoingNotification.buildOngoingConferenceNotification(this.isAudioMuted, this, tapBackActivity);
219 219
             if (notification == null) {
220 220
                 stopSelf();
221 221
                 JitsiMeetLogger.w(TAG + " Couldn't start service, notification is null");

Loading…
취소
저장