Filter starred(bookmarks) room

This commit is contained in:
zhaoYangguang 2021-01-13 18:18:52 +08:00
parent 989cb80899
commit 613d45ed68
1 changed files with 4 additions and 0 deletions

View File

@ -532,6 +532,10 @@ func (user *User) syncPortals(chatMap map[string]skype.Conversation, createAll b
if chat.Id == "48:calllogs" {
continue
}
// Filter starred(bookmarks)
if chat.Id == "48:starred" {
continue
}
// Filter conversations that have not sent messages
if chat.LastMessage.Id == "" {
continue