Fix auto accepting friend requests

pull/1135/head
Mikunj 5 years ago
parent 3dc8ba2f02
commit ec3132afc9

@ -1941,7 +1941,7 @@
const { primaryDevicePubKey } = authorisation;
// ensure the primary device is a friend
const c = window.ConversationController.get(primaryDevicePubKey);
if (!c || !c.isFriendWithAnyDevice()) {
if (!c || !await c.isFriendWithAnyDevice()) {
return false;
}
await libloki.storage.savePairingAuthorisation(authorisation);

Loading…
Cancel
Save