Merge pull request #199 from mebjas/develop
fixed issue vector-im/vector-web 1079
This commit is contained in:
commit
a2c6bd0e6c
1 changed files with 9 additions and 1 deletions
|
@ -589,7 +589,15 @@ module.exports = React.createClass({
|
||||||
var theAlias = MatrixTools.getCanonicalAliasForRoom(room);
|
var theAlias = MatrixTools.getCanonicalAliasForRoom(room);
|
||||||
if (theAlias) presentedId = theAlias;
|
if (theAlias) presentedId = theAlias;
|
||||||
}
|
}
|
||||||
self.notifyNewScreen('room/'+presentedId);
|
|
||||||
|
if (presentedId != undefined) {
|
||||||
|
self.notifyNewScreen('room/'+presentedId);
|
||||||
|
} else {
|
||||||
|
// There is no information on presentedId
|
||||||
|
// so point user to fallback like /directory
|
||||||
|
self.notifyNewScreen('directory');
|
||||||
|
}
|
||||||
|
|
||||||
dis.dispatch({action: 'focus_composer'});
|
dis.dispatch({action: 'focus_composer'});
|
||||||
} else {
|
} else {
|
||||||
self.setState({ready: true});
|
self.setState({ready: true});
|
||||||
|
|
Loading…
Reference in a new issue