Merge pull request #1139 from matrix-org/rav/fix_incorrect_log
Fix an incorrect console errorpull/21833/head
commit
c101459e63
|
@ -330,7 +330,7 @@ module.exports = React.createClass({
|
||||||
defaultDeviceDisplayName: this.props.defaultDeviceDisplayName,
|
defaultDeviceDisplayName: this.props.defaultDeviceDisplayName,
|
||||||
});
|
});
|
||||||
}).catch((e) => {
|
}).catch((e) => {
|
||||||
console.error(`Error attempting to load session from token params: ${e}`);
|
console.error(`Error attempting to load session: ${e}`);
|
||||||
return false;
|
return false;
|
||||||
}).then((loadedSession) => {
|
}).then((loadedSession) => {
|
||||||
if (!loadedSession) {
|
if (!loadedSession) {
|
||||||
|
|
Loading…
Reference in New Issue