Login sso: handle failure
This commit is contained in:
parent
2e50d2a36e
commit
f265724a3c
@ -134,6 +134,10 @@ class LoginViewModel @AssistedInject constructor(@Assisted initialState: LoginVi
|
|||||||
override fun onSuccess(data: Session) {
|
override fun onSuccess(data: Session) {
|
||||||
onSessionCreated(data)
|
onSessionCreated(data)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
override fun onFailure(failure: Throwable) = setState {
|
||||||
|
copy(asyncLoginAction = Fail(failure))
|
||||||
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -150,7 +154,7 @@ class LoginViewModel @AssistedInject constructor(@Assisted initialState: LoginVi
|
|||||||
|
|
||||||
// Do not retry if we already have flows for this config -> causes infinite focus loop
|
// Do not retry if we already have flows for this config -> causes infinite focus loop
|
||||||
if (newConfig?.homeServerUri?.toString() == homeServerConnectionConfig?.homeServerUri?.toString()
|
if (newConfig?.homeServerUri?.toString() == homeServerConnectionConfig?.homeServerUri?.toString()
|
||||||
&& state.asyncHomeServerLoginFlowRequest is Success) return@withState
|
&& state.asyncHomeServerLoginFlowRequest is Success) return@withState
|
||||||
|
|
||||||
currentTask?.cancel()
|
currentTask?.cancel()
|
||||||
homeServerConnectionConfig = newConfig
|
homeServerConnectionConfig = newConfig
|
||||||
|
Loading…
x
Reference in New Issue
Block a user