diff options
Diffstat (limited to 'qml/ChatlistPage.qml')
-rw-r--r-- | qml/ChatlistPage.qml | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/qml/ChatlistPage.qml b/qml/ChatlistPage.qml index 5390baa..5da4d25 100644 --- a/qml/ChatlistPage.qml +++ b/qml/ChatlistPage.qml @@ -113,10 +113,12 @@ Kirigami.ScrollablePage { var chatId = chatlistModel.get(chatlist.currentIndex).chatId - if (chatId > 9) { - // > DC_CHAT_ID_LAST_SPECIAL + if (chatId == 1 || chatId > 9) { + // chatId == DC_CHAT_ID_DEADDROP || chatId > DC_CHAT_ID_LAST_SPECIAL - chatlistPage.context.marknoticedChat(chatId) + if (chatId != 1) { + chatlistPage.context.marknoticedChat(chatId) + } console.log("Selected chat " + chatId) |