From 243fd68904179c547ef8271fb7ec6a1844103ba6 Mon Sep 17 00:00:00 2001 From: lilia Date: Thu, 22 Jun 2017 14:34:56 -0700 Subject: [PATCH] Handle verified state from contact syncs Treat it just like an isolated verified state sync // FREEBIE --- js/background.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/js/background.js b/js/background.js index 3373862b3..f1e634057 100644 --- a/js/background.js +++ b/js/background.js @@ -163,6 +163,10 @@ } ConversationController.create(c).save(); + + if (contactDetails.verified) { + onVerified(contactDetails); + } } function onGroupReceived(ev) {