mirror of
https://github.com/element-hq/element-web.git
synced 2024-11-30 23:31:28 +03:00
use more consistent naming
This commit is contained in:
parent
54904c9282
commit
e237a02fa5
2 changed files with 2 additions and 2 deletions
|
@ -754,7 +754,7 @@ module.exports = React.createClass({
|
|||
return;
|
||||
}
|
||||
const roomId = this.state.room.roomId;
|
||||
const dmInviter = me.getDirectChatInviter();
|
||||
const dmInviter = me.getDMInviter();
|
||||
|
||||
if (dmInviter) {
|
||||
Rooms.setDMRoom(roomId, dmInviter);
|
||||
|
|
|
@ -98,7 +98,7 @@ export default class DMRoomMap {
|
|||
const room = this.matrixClient.getRoom(roomId);
|
||||
if (room) {
|
||||
const me = room.getMember(this.matrixClient.getUserId());
|
||||
return me.getDirectChatInviter();
|
||||
return me.getDMInviter();
|
||||
}
|
||||
}
|
||||
return this.roomToUser[roomId];
|
||||
|
|
Loading…
Reference in a new issue