Ensure DMs are not lost in the new room list

Fixes https://github.com/vector-im/riot-web/issues/14236
pull/21833/head
Travis Ralston 2020-07-07 13:46:10 -06:00
parent a49b5109c6
commit be1b2fddaf
1 changed files with 5 additions and 3 deletions

View File

@ -530,9 +530,11 @@ export class Algorithm extends EventEmitter {
}
if (!inTag) {
// TODO: Determine if DM and push there instead: https://github.com/vector-im/riot-web/issues/14236
newTags[DefaultTagID.Untagged].push(room);
if (DMRoomMap.getUserIdForRoomId(room.roomId)) {
newTags[DefaultTagID.DM].push(room);
} else {
newTags[DefaultTagID.Untagged].push(room);
}
// TODO: Remove debug: https://github.com/vector-im/riot-web/issues/14035
console.log(`[DEBUG] "${room.name}" (${room.roomId}) is Untagged`);
}