Remove default value for languageTag and theme.

This commit is contained in:
Benoit Marty
2024-07-01 14:31:26 +02:00
parent 2529a8d844
commit 6a6e66765a
2 changed files with 4 additions and 2 deletions
@@ -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
@@ -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(