Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F3353198
D12698.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
2 KB
Referenced Files
None
Subscribers
None
D12698.diff
View Options
diff --git a/native/components/background-identity-login-handler.react.js b/native/components/background-identity-login-handler.react.js
--- a/native/components/background-identity-login-handler.react.js
+++ b/native/components/background-identity-login-handler.react.js
@@ -8,6 +8,7 @@
logOutActionTypes,
useLogOut,
} from 'lib/actions/user-actions.js';
+import { isLoggedInToIdentityAndAuthoritativeKeyserver } from 'lib/selectors/user-selectors.js';
import { accountHasPassword } from 'lib/shared/account-utils.js';
import { securityUpdateLogoutText } from 'lib/types/alert-types.js';
import { useDispatchActionPromise } from 'lib/utils/redux-promise-utils.js';
@@ -15,6 +16,7 @@
import { usingCommServicesAccessToken } from 'lib/utils/services-utils.js';
import { fetchNativeKeychainCredentials } from '../account/native-credentials.js';
+import { useIsAppLoggedIn } from '../navigation/nav-selectors.js';
import Alert from '../utils/alert.js';
function BackgroundIdentityLoginHandler() {
@@ -25,7 +27,14 @@
accountHasPassword(state.currentUserInfo),
);
const hasAccessToken = useSelector(state => !!state.commServicesAccessToken);
- const dataLoaded = useSelector(state => state.dataLoaded);
+
+ const loggedIn = useSelector(isLoggedInToIdentityAndAuthoritativeKeyserver);
+ const navLoggedIn = useIsAppLoggedIn();
+
+ // We don't want to try identity login until both loggedIn and navLoggedIn are
+ // true. The former is to make sure that we will be able to successfully log
+ // in with identity. The latter is to address a race condition in ENG-8785.
+ const readyToTryIdentityLogin = loggedIn && navLoggedIn;
const callIdentityPasswordLogIn = useIdentityPasswordLogIn();
@@ -39,7 +48,7 @@
const logInIfPossibleElseLogOut = React.useCallback(async () => {
if (
hasAccessToken ||
- !dataLoaded ||
+ !readyToTryIdentityLogin ||
!usingCommServicesAccessToken ||
loginAttemptedRef.current
) {
@@ -80,7 +89,7 @@
}, [
callIdentityPasswordLogIn,
dispatchActionPromise,
- dataLoaded,
+ readyToTryIdentityLogin,
handleLogOutAndAlert,
hasAccessToken,
isAccountWithPassword,
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sun, Nov 24, 8:51 AM (20 h, 44 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
2574735
Default Alt Text
D12698.diff (2 KB)
Attached To
Mode
D12698: [native] Have BackgroundIdentityLoginHandler wait until LogInHandler
Attached
Detach File
Event Timeline
Log In to Comment