Fix sliding sync proxy login not working after native SS failure (#3489)
This commit is contained in:
parent
874fb491ab
commit
cb3c5d0c49
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.flow.first
|
||||||
import kotlinx.coroutines.withContext
|
import kotlinx.coroutines.withContext
|
||||||
import org.matrix.rustcomponents.sdk.Client
|
import org.matrix.rustcomponents.sdk.Client
|
||||||
|
import org.matrix.rustcomponents.sdk.ClientBuildException
|
||||||
import org.matrix.rustcomponents.sdk.ClientBuilder
|
import org.matrix.rustcomponents.sdk.ClientBuilder
|
||||||
import org.matrix.rustcomponents.sdk.HumanQrLoginException
|
import org.matrix.rustcomponents.sdk.HumanQrLoginException
|
||||||
import org.matrix.rustcomponents.sdk.OidcConfiguration
|
import org.matrix.rustcomponents.sdk.OidcConfiguration
|
||||||
|
|
@ -292,7 +293,7 @@ class RustMatrixAuthenticationService @Inject constructor(
|
||||||
)
|
)
|
||||||
.config()
|
.config()
|
||||||
.build()
|
.build()
|
||||||
} catch (e: HumanQrLoginException.SlidingSyncNotAvailable) {
|
} catch (e: ClientBuildException.SlidingSyncVersion) {
|
||||||
Timber.e(e, "Failed to create client with simplified sliding sync, trying with Proxy now")
|
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