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 {