Skip to content

Commit

Permalink
Set null as callDisplayName default value in getOngoingCallNotificati…
Browse files Browse the repository at this point in the history
…on and getRingingCallNotification
  • Loading branch information
liviu-timar committed Sep 20, 2024
1 parent 260d269 commit fabb6dc
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,14 +31,14 @@ public interface NotificationHandler : NotificationPermissionHandler {
fun onLiveCall(callId: StreamCallId, callDisplayName: String)
fun getOngoingCallNotification(
callId: StreamCallId,
callDisplayName: String?,
callDisplayName: String? = null,
isOutgoingCall: Boolean = false,
remoteParticipantCount: Int = 0,
): Notification?
fun getRingingCallNotification(
ringingState: RingingState,
callId: StreamCallId,
callDisplayName: String?,
callDisplayName: String? = null,
shouldHaveContentIntent: Boolean = true,
): Notification?
fun getSettingUpCallNotification(): Notification?
Expand Down

0 comments on commit fabb6dc

Please sign in to comment.