Remove default value for languageTag and theme.

This commit is contained in:
Benoit Marty
2024-07-01 14:31:26 +02:00
parent 77dc61ca7f
commit 8b9c838508
2 changed files with 4 additions and 2 deletions

View File

@@ -189,6 +189,8 @@ class CallScreenPresenter @AssistedInject constructor(
sessionId = inputs.sessionId,
roomId = inputs.roomId,
clientId = UUID.randomUUID().toString(),
languageTag = null,
theme = null,
).getOrThrow()
callWidgetDriver.value = result.driver
result.url

View File

@@ -25,8 +25,8 @@ interface CallWidgetProvider {
sessionId: SessionId,
roomId: RoomId,
clientId: String,
languageTag: String? = null,
theme: String? = null,
languageTag: String?,
theme: String?,
): Result<GetWidgetResult>
data class GetWidgetResult(