Another default value fix

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

View File

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