Skip to content

Commit

Permalink
fix(android) fix crash when staring ongoing notification
Browse files Browse the repository at this point in the history
  • Loading branch information
saghul committed Aug 26, 2024
1 parent ec22c1f commit fdfd2ed
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ public int onStartCommand(Intent intent, int flags, int startId) {
}
}

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");
Expand Down

0 comments on commit fdfd2ed

Please sign in to comment.