mirror of
https://github.com/element-hq/element-web
synced 2024-11-28 04:21:57 +03:00
only put NON-guessed rooms in self-chats
This commit is contained in:
parent
c12abab52d
commit
245dfbf957
1 changed files with 1 additions and 1 deletions
|
@ -117,7 +117,7 @@ export default class DMRoomMap {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
userToRooms[myUserId] = selfRoomIds.filter((roomId) => {
|
userToRooms[myUserId] = selfRoomIds.filter((roomId) => {
|
||||||
return guessedUserIdsThatChanged
|
return !guessedUserIdsThatChanged
|
||||||
.some((ids) => ids.roomId === roomId);
|
.some((ids) => ids.roomId === roomId);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue