fix(android) fix crash when staring ongoing notification

pull/15055/head jitsi-meet_9697
Saúl Ibarra Corretgé 9 months ago committed by Calinteodor
parent ec22c1fdda
commit f59d04586c
  1. 2
      android/sdk/src/main/java/org/jitsi/meet/sdk/JitsiMeetOngoingConferenceService.java

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

Loading…
Cancel
Save