Another default value fix

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

View File

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