Missed a _isDmChat call when refactoring
This commit is contained in:
parent
c3566e0b49
commit
d3a709f98e
1 changed files with 1 additions and 1 deletions
|
@ -83,7 +83,7 @@ module.exports = React.createClass({
|
||||||
}
|
}
|
||||||
|
|
||||||
if (inviteList.length > 0) {
|
if (inviteList.length > 0) {
|
||||||
if (this._isDmChat()) {
|
if (this._isDmChat(inviteList)) {
|
||||||
// Direct Message chat
|
// Direct Message chat
|
||||||
var room = this._getDirectMessageRoom(inviteList[0]);
|
var room = this._getDirectMessageRoom(inviteList[0]);
|
||||||
if (room) {
|
if (room) {
|
||||||
|
|
Loading…
Reference in a new issue