1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-11-17 17:42:41 +03:00

Appease the linter

This commit is contained in:
Travis Ralston
2020-01-13 21:21:18 -07:00
parent 9188183c9b
commit 76183fc8fd

View File

@@ -333,7 +333,7 @@ export default class DMInviteDialog extends React.PureComponent {
// Generates { userId: {member, rooms[]} }
const memberRooms = joinedRooms.reduce((members, room) => {
// Filter out DMs (we'll handle these in the recents section)
if (!!DMRoomMap.shared().getUserIdForRoomId(room.roomId)) {
if (DMRoomMap.shared().getUserIdForRoomId(room.roomId)) {
return members; // Do nothing
}