1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-07-18 09:22:18 +03:00

Merge remote-tracking branch 'origin/develop' into matthew/status

This commit is contained in:
Matthew Hodgson
2017-11-08 04:29:52 -08:00
27 changed files with 519 additions and 75 deletions

View File

@ -493,7 +493,10 @@ module.exports = React.createClass({
case 'view_group':
{
const groupId = payload.group_id;
this.setState({currentGroupId: groupId});
this.setState({
currentGroupId: groupId,
currentGroupIsNew: payload.group_is_new,
});
this._setPage(PageTypes.GroupView);
this.notifyNewScreen('group/' + groupId);
}