Browse Source

fix(android) fix crash when staring ongoing notification

factor2
Saúl Ibarra Corretgé 9 months ago
parent
commit
f59d04586c

+ 1
- 1
android/sdk/src/main/java/org/jitsi/meet/sdk/JitsiMeetOngoingConferenceService.java View File

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

Loading…
Cancel
Save