1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-11-10 09:22:25 +03:00

Fix a bug with determining 1:1 rooms

We shouldn't consider rooms where people have left or been banned
This commit is contained in:
Travis Ralston
2018-12-12 13:20:10 -07:00
parent cd9ea2b2d7
commit dd382ecb05

View File

@@ -252,7 +252,7 @@ module.exports = React.createClass({
const badges = notifBadges || mentionBadges;
const isJoined = this.props.room.getMyMembership() === "join";
const looksLikeDm = this.props.room.currentState.getMembers().length === 2;
const looksLikeDm = this.props.room.getInvitedAndJoinedMemberCount() === 2;
let subtext = null;
if (!isInvite && isJoined && looksLikeDm) {
const selfId = MatrixClientPeg.get().getUserId();