mirror of
https://gitlab.opencode.de/bwi/bundesmessenger/clients/bundesmessenger-ios.git
synced 2026-04-21 00:52:43 +02:00
Handle offline issue in UserSessionsDataProvider
This commit is contained in:
+11
-2
@@ -57,8 +57,17 @@ class UserSessionsDataProvider: UserSessionsDataProviderProtocol {
|
||||
guard let deviceInfo = deviceInfo else {
|
||||
return .permanentlyUnverified
|
||||
}
|
||||
|
||||
guard session.crypto?.crossSigning.canCrossSign == true else {
|
||||
|
||||
// When the app is launched offline the cross signing state is "notBootstrapped"
|
||||
// In this edge case the verification state returned is `.unknown` since we cannot say more even for the current session.
|
||||
guard
|
||||
let crossSigning = session.crypto?.crossSigning,
|
||||
crossSigning.state.rawValue > MXCrossSigningState.notBootstrapped.rawValue
|
||||
else {
|
||||
return .unknown
|
||||
}
|
||||
|
||||
guard crossSigning.canCrossSign else {
|
||||
return deviceInfo.deviceId == session.myDeviceId ? .unverified : .unknown
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user