mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-16 13:14:58 +08:00
Use room method to help with DM detection with fallback to summary heroes/counts.
This commit is contained in:
parent
908de56c6d
commit
b151956f7b
@ -758,16 +758,13 @@ module.exports = React.createClass({
|
||||
},
|
||||
|
||||
_updateDMState() {
|
||||
const me = this.state.room.getMember(MatrixClientPeg.get().getUserId());
|
||||
const room = this.state.room;
|
||||
if (room.getMyMembership() != "join") {
|
||||
return;
|
||||
}
|
||||
const roomId = this.state.room.roomId;
|
||||
const dmInviter = me.getDMInviter();
|
||||
|
||||
const dmInviter = room.getDMInviter();
|
||||
if (dmInviter) {
|
||||
Rooms.setDMRoom(roomId, dmInviter);
|
||||
Rooms.setDMRoom(room.roomId, dmInviter);
|
||||
}
|
||||
},
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user