reenable isVerifier on contactCollection

pull/1205/head
Audric Ackermann 5 years ago
parent 5610ec5a9f
commit 105acd63d8
No known key found for this signature in database
GPG Key ID: 999F434D76324AD4

@ -723,15 +723,13 @@
if (!this.contactCollection.length) {
return false;
}
// console.log('this.contactCollection', this.contactCollection);
// FIXME AUDRIC
return true;
// return this.contactCollection.every(contact => {
// if (contact.isMe()) {
// return true;
// }
// return contact.isVerified();
// });
return this.contactCollection.every(contact => {
if (contact.isMe()) {
return true;
}
return contact.isVerified();
});
},
async getPrimaryConversation() {
if (!this.isSecondaryDevice()) {

Loading…
Cancel
Save