[FIX] Join discussion (#1000)
This commit is contained in:
parent
1383b9b735
commit
e52739e305
|
@ -447,9 +447,12 @@ const RocketChat = {
|
|||
// RC 0.59.0
|
||||
return this.sdk.post('im.create', { username });
|
||||
},
|
||||
joinRoom(roomId) {
|
||||
joinRoom(roomId, type) {
|
||||
// TODO: join code
|
||||
// RC 0.48.0
|
||||
if (type === 'p') {
|
||||
return this.sdk.methodCall('joinRoom', roomId);
|
||||
}
|
||||
return this.sdk.post('channels.join', { roomId });
|
||||
},
|
||||
sendFileMessage,
|
||||
|
|
|
@ -437,12 +437,10 @@ export default class RoomView extends React.Component {
|
|||
|
||||
joinRoom = async() => {
|
||||
try {
|
||||
const result = await RocketChat.joinRoom(this.rid);
|
||||
if (result.success) {
|
||||
this.internalSetState({
|
||||
joined: true
|
||||
});
|
||||
}
|
||||
await RocketChat.joinRoom(this.rid, this.t);
|
||||
this.internalSetState({
|
||||
joined: true
|
||||
});
|
||||
} catch (e) {
|
||||
log('err_join_room', e);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue