From cc0b74fe4a6e112afbde95b318ac914640dc101c Mon Sep 17 00:00:00 2001 From: Mikunj Date: Thu, 29 Nov 2018 16:13:42 +1100 Subject: [PATCH] Don't show ourselves in the contact list. --- js/conversation_controller.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/js/conversation_controller.js b/js/conversation_controller.js index ca025270e..3f1948c3e 100644 --- a/js/conversation_controller.js +++ b/js/conversation_controller.js @@ -93,9 +93,8 @@ return this.collator.compare(title1, title2); }, addActive(model) { - // We only want models which are not shown in the inbox - // And that we are friends with - if (model.isFriend()) { + // We only want models which we are friends with + if (model.isFriend() && !model.isMe()) { this.add(model); model.updateLastMessage(); } else {