mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-16 21:24:59 +08:00
Merge pull request #199 from mebjas/develop
fixed issue vector-im/vector-web 1079
This commit is contained in:
commit
a2c6bd0e6c
@ -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 New Issue
Block a user