Fix sliding sync proxy login not working after native SS failure (#3489)
This commit is contained in:
parent
79222439ae
commit
d5ac6dabdf
1 changed files with 2 additions and 1 deletions
|
|
@ -42,6 +42,7 @@ import kotlinx.coroutines.flow.StateFlow
|
|||
import kotlinx.coroutines.flow.first
|
||||
import kotlinx.coroutines.withContext
|
||||
import org.matrix.rustcomponents.sdk.Client
|
||||
import org.matrix.rustcomponents.sdk.ClientBuildException
|
||||
import org.matrix.rustcomponents.sdk.ClientBuilder
|
||||
import org.matrix.rustcomponents.sdk.HumanQrLoginException
|
||||
import org.matrix.rustcomponents.sdk.OidcConfiguration
|
||||
|
|
@ -292,7 +293,7 @@ class RustMatrixAuthenticationService @Inject constructor(
|
|||
)
|
||||
.config()
|
||||
.build()
|
||||
} catch (e: HumanQrLoginException.SlidingSyncNotAvailable) {
|
||||
} catch (e: ClientBuildException.SlidingSyncVersion) {
|
||||
Timber.e(e, "Failed to create client with simplified sliding sync, trying with Proxy now")
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue