diff --git a/js/background.js b/js/background.js index e8554d912..f88625707 100644 --- a/js/background.js +++ b/js/background.js @@ -1431,9 +1431,11 @@ // TODO: we should ensure the message was sent and retry automatically if not await libloki.api.sendUnpairingMessageToSecondary(pubKey); // Remove all traces of the device - ConversationController.deleteContact(pubKey); - Whisper.events.trigger('refreshLinkedDeviceList'); - callback(); + setTimeout(() => { + ConversationController.deleteContact(pubKey); + Whisper.events.trigger('refreshLinkedDeviceList'); + callback(); + }, 1000); }); }