Open inbox when linking and suddenly offline

This commit is contained in:
Fedor Indutny 2022-08-11 13:28:31 -07:00 committed by GitHub
parent f7b2627991
commit 465bdad2bf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2060,6 +2060,16 @@ export async function startApp(): Promise<void> {
);
window.addEventListener('online', onOnline);
onEmpty(); // this ensures that the loading screen is dismissed
// Switch to inbox view even if contact sync is still running
if (
window.reduxStore.getState().app.appView === AppViewType.Installer
) {
log.info('firstRun: offline, opening inbox');
window.reduxActions.app.openInbox();
} else {
log.info('firstRun: offline, not opening inbox');
}
return;
}