取消会话排序的第四优先级”昵称字典序“,还需要考虑群组,没有必要这么复杂

This commit is contained in:
bob
2024-11-26 10:14:05 +08:00
parent 6f6209c0df
commit 5ca857eb4e

View File

@@ -241,9 +241,6 @@ const sessionListSorted = computed(() => {
const aTIme = new Date(a.lastMsgTime).getTime()
if (bTime !== aTIme) {
return bTime - aTIme
} else {
// 排序第四优先级:昵称字典序
return a.objectInfo.nickName > b.objectInfo.nickName ? 1 : -1
}
}
}