Decrease contact sync timeout on linking

This commit is contained in:
Fedor Indutny 2023-02-06 14:03:38 -08:00 committed by GitHub
parent 8b5fa7039d
commit 9ce4d32afb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2315,7 +2315,8 @@ export async function startApp(): Promise<void> {
window.Whisper.events.once(event, () => resolve());
return promise;
},
'firstRun:waitForEvent'
'firstRun:waitForEvent',
{ timeout: 2 * durations.MINUTE }
);
let storageServiceSyncComplete: Promise<void>;