Skip to content

Commit 4202762

Browse files
fix: test
1 parent f6d8817 commit 4202762

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

extension/js/common/platform/store/contact-store.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -488,7 +488,7 @@ export class ContactStore extends AbstractStore {
488488
if (update.pubkey && typeof update.pubkey !== 'string') {
489489
KeyUtil.pack(update.pubkey);
490490
}
491-
await BrowserMsg.send.bg.await.db({ f: 'update', args: [email, update] });
491+
await BrowserMsg.retryOnBgNotReadyErr(() => BrowserMsg.send.bg.await.db({ f: 'update', args: [email, update] }));
492492
return;
493493
}
494494
if (Array.isArray(email)) {

0 commit comments

Comments
 (0)