mirror of
https://github.com/vector-im/element-web.git
synced 2025-08-25 16:31:37 +02:00
Don't duplicate direct chats from other tags
Fixes https://github.com/vector-im/riot-web/issues/8971
This commit is contained in:
parent
593bd8ff66
commit
3c2403ca54
@ -319,7 +319,9 @@ class RoomListStore extends Store {
|
||||
const dmRoomMap = DMRoomMap.shared();
|
||||
if (myMembership === 'invite') {
|
||||
tags.push("im.vector.fake.invite");
|
||||
} else if (dmRoomMap.getUserIdForRoomId(room.roomId)) {
|
||||
} else if (dmRoomMap.getUserIdForRoomId(room.roomId) && tags.length === 0) {
|
||||
// We intentionally don't duplicate rooms in other tags into the people list
|
||||
// as a feature.
|
||||
tags.push("im.vector.fake.direct");
|
||||
} else if (tags.length === 0) {
|
||||
tags.push("im.vector.fake.recent");
|
||||
|
Loading…
x
Reference in New Issue
Block a user