mirror of
https://github.com/simplex-chat/simplex-chat.git
synced 2026-05-25 20:44:38 +00:00
dont pop the first chat
This commit is contained in:
@@ -639,7 +639,7 @@ final class ChatModel: ObservableObject {
|
||||
for chatId in chatsToPop {
|
||||
if m.chatId == chatId {
|
||||
skipped = chatId
|
||||
} else if let i = m.getChatIndex(chatId) {
|
||||
} else if let i = m.getChatIndex(chatId), i > 0 {
|
||||
ixs.insert(i)
|
||||
chs.append(m.chats[i])
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user