From f59d04586c6494284097428cb8eb6d190725d41f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sa=C3=BAl=20Ibarra=20Corretg=C3=A9?= Date: Mon, 26 Aug 2024 10:49:12 +0200 Subject: [PATCH] fix(android) fix crash when staring ongoing notification --- .../org/jitsi/meet/sdk/JitsiMeetOngoingConferenceService.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/android/sdk/src/main/java/org/jitsi/meet/sdk/JitsiMeetOngoingConferenceService.java b/android/sdk/src/main/java/org/jitsi/meet/sdk/JitsiMeetOngoingConferenceService.java index 119a24676c..f106d07619 100644 --- a/android/sdk/src/main/java/org/jitsi/meet/sdk/JitsiMeetOngoingConferenceService.java +++ b/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");