Update navToRoom

This commit is contained in:
Gerzon Z 2021-06-21 10:34:58 -04:00
parent c744672cbf
commit 3519282a03
1 changed files with 2 additions and 2 deletions

View File

@ -856,10 +856,10 @@ class RoomView extends React.Component {
} }
navToRoom = async(message) => { navToRoom = async(message) => {
const { navigation, isMasterDetail } = this.props; const { isMasterDetail } = this.props;
const roomInfo = await getRoomInfo(message.rid); const roomInfo = await getRoomInfo(message.rid);
return goRoom({ return goRoom({
item: roomInfo, isMasterDetail, navigationMethod: navigation.push, jumpToMessageId: message.id item: roomInfo, isMasterDetail, jumpToMessageId: message.id
}); });
} }