Fix ongoing call notification bug.

fork-5.53.8
Cody Henthorne 2022-10-10 13:25:10 -04:00
rodzic c82bf826e0
commit 68237df321
1 zmienionych plików z 1 dodań i 0 usunięć

Wyświetl plik

@ -69,6 +69,7 @@ public class CallNotificationBuilder {
builder.addAction(getServiceNotificationAction(context, WebRtcCallService.hangupIntent(context), R.drawable.ic_call_end_grey600_32dp, R.string.NotificationBarManager__cancel_call));
} else {
builder.setContentText(context.getString(R.string.NotificationBarManager_signal_call_in_progress));
builder.setOnlyAlertOnce(true);
builder.addAction(getServiceNotificationAction(context, WebRtcCallService.hangupIntent(context), R.drawable.ic_call_end_grey600_32dp, R.string.NotificationBarManager__end_call));
}