Keep call notification ringing while a call is present in the room (#4634)

This commit is contained in:
Jorge Martin Espinosa 2025-05-09 11:38:43 +02:00 committed by GitHub
parent 3391e7cc55
commit c39b480f82
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 217 additions and 99 deletions

View file

@ -18,7 +18,7 @@ class FakeCallNotificationEventResolver(
lambdaError()
},
) : CallNotificationEventResolver {
override fun resolveEvent(sessionId: SessionId, notificationData: NotificationData, forceNotify: Boolean): Result<NotifiableEvent> {
override suspend fun resolveEvent(sessionId: SessionId, notificationData: NotificationData, forceNotify: Boolean): Result<NotifiableEvent> {
return resolveEventLambda(sessionId, notificationData, forceNotify)
}
}