diff --git a/src/chat.rs b/src/chat.rs index 6e28e8071..82e545933 100644 --- a/src/chat.rs +++ b/src/chat.rs @@ -1481,7 +1481,7 @@ pub fn get_chat_contacts(context: &Context, chat_id: u32) -> Vec { /* Normal chats do not include SELF. Group chats do (as it may happen that one is deleted from a groupchat but the chats stays visible, moreover, this makes displaying lists easier) */ - if chat_id == 1 { + if chat_id == DC_CHAT_ID_DEADDROP { return Vec::new(); }