Another default value fix

This commit is contained in:
Hugh Nimmo-Smith 2022-10-13 16:11:41 +01:00
parent b5e81d27d6
commit 22b344c43a
1 changed files with 1 additions and 1 deletions

View File

@ -135,7 +135,7 @@ interface AuthenticationService {
suspend fun loginUsingQrLoginToken(
homeServerConnectionConfig: HomeServerConnectionConfig,
loginToken: String,
initialDeviceName: String?,
initialDeviceName: String? = null,
deviceId: String? = null
): Session
}