mirror of https://github.com/vector-im/riot-web
Ensure DMs are not lost in the new room list
Fixes https://github.com/vector-im/riot-web/issues/14236pull/21833/head
parent
a49b5109c6
commit
be1b2fddaf
|
@ -530,9 +530,11 @@ export class Algorithm extends EventEmitter {
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!inTag) {
|
if (!inTag) {
|
||||||
// TODO: Determine if DM and push there instead: https://github.com/vector-im/riot-web/issues/14236
|
if (DMRoomMap.getUserIdForRoomId(room.roomId)) {
|
||||||
|
newTags[DefaultTagID.DM].push(room);
|
||||||
|
} else {
|
||||||
newTags[DefaultTagID.Untagged].push(room);
|
newTags[DefaultTagID.Untagged].push(room);
|
||||||
|
}
|
||||||
// TODO: Remove debug: https://github.com/vector-im/riot-web/issues/14035
|
// TODO: Remove debug: https://github.com/vector-im/riot-web/issues/14035
|
||||||
console.log(`[DEBUG] "${room.name}" (${room.roomId}) is Untagged`);
|
console.log(`[DEBUG] "${room.name}" (${room.roomId}) is Untagged`);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue