You've already forked matrix-react-sdk
mirror of
https://github.com/matrix-org/matrix-react-sdk.git
synced 2025-11-10 09:22:25 +03:00
Updated with the new createRoom DM stuff
This commit is contained in:
@@ -200,7 +200,8 @@ module.exports = React.createClass({
|
|||||||
|
|
||||||
_startChat: function(addr) {
|
_startChat: function(addr) {
|
||||||
if (this.props.roomId) {
|
if (this.props.roomId) {
|
||||||
Invite.inviteToRoom(this.props.roomId, addr).catch(function(err) {
|
Invite.inviteToRoom(this.props.roomId, addr)
|
||||||
|
.catch(function(err) {
|
||||||
var ErrorDialog = sdk.getComponent("dialogs.ErrorDialog");
|
var ErrorDialog = sdk.getComponent("dialogs.ErrorDialog");
|
||||||
Modal.createDialog(ErrorDialog, {
|
Modal.createDialog(ErrorDialog, {
|
||||||
title: "Failure to invite user",
|
title: "Failure to invite user",
|
||||||
@@ -211,9 +212,7 @@ module.exports = React.createClass({
|
|||||||
.done();
|
.done();
|
||||||
} else {
|
} else {
|
||||||
// Start the chat
|
// Start the chat
|
||||||
createRoom().then(function(roomId) {
|
createRoom({dmUserId: addr})
|
||||||
return Invite.inviteToRoom(roomId, addr);
|
|
||||||
})
|
|
||||||
.catch(function(err) {
|
.catch(function(err) {
|
||||||
var ErrorDialog = sdk.getComponent("dialogs.ErrorDialog");
|
var ErrorDialog = sdk.getComponent("dialogs.ErrorDialog");
|
||||||
Modal.createDialog(ErrorDialog, {
|
Modal.createDialog(ErrorDialog, {
|
||||||
@@ -224,17 +223,6 @@ module.exports = React.createClass({
|
|||||||
})
|
})
|
||||||
.done();
|
.done();
|
||||||
}
|
}
|
||||||
// // Start the chat
|
|
||||||
// createRoom({dmUserId: addr})
|
|
||||||
// .catch(function(err) {
|
|
||||||
// var ErrorDialog = sdk.getComponent("dialogs.ErrorDialog");
|
|
||||||
// Modal.createDialog(ErrorDialog, {
|
|
||||||
// title: "Failure to invite user",
|
|
||||||
// description: err.toString()
|
|
||||||
// });
|
|
||||||
// return null;
|
|
||||||
// })
|
|
||||||
// .done();
|
|
||||||
|
|
||||||
// Close - this will happen before the above, as that is async
|
// Close - this will happen before the above, as that is async
|
||||||
this.props.onFinished(true, addr);
|
this.props.onFinished(true, addr);
|
||||||
|
|||||||
Reference in New Issue
Block a user