We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f6d8817 commit 4202762Copy full SHA for 4202762
extension/js/common/platform/store/contact-store.ts
@@ -488,7 +488,7 @@ export class ContactStore extends AbstractStore {
488
if (update.pubkey && typeof update.pubkey !== 'string') {
489
KeyUtil.pack(update.pubkey);
490
}
491
- await BrowserMsg.send.bg.await.db({ f: 'update', args: [email, update] });
+ await BrowserMsg.retryOnBgNotReadyErr(() => BrowserMsg.send.bg.await.db({ f: 'update', args: [email, update] }));
492
return;
493
494
if (Array.isArray(email)) {
0 commit comments