From fcd945afc2e9c563a8f20c5bac3d7cffff6078ca Mon Sep 17 00:00:00 2001 From: Richard van der Hoff Date: Thu, 22 Jun 2017 15:08:30 +0100 Subject: [PATCH] Fix an incorrect console error ... this error is thrown when registering as guest or loading from localstorage, not when using tokenparams. --- src/components/structures/MatrixChat.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/structures/MatrixChat.js b/src/components/structures/MatrixChat.js index 019446ae84..7773f4f38c 100644 --- a/src/components/structures/MatrixChat.js +++ b/src/components/structures/MatrixChat.js @@ -330,7 +330,7 @@ module.exports = React.createClass({ defaultDeviceDisplayName: this.props.defaultDeviceDisplayName, }); }).catch((e) => { - console.error(`Error attempting to load session from token params: ${e}`); + console.error(`Error attempting to load session: ${e}`); return false; }).then((loadedSession) => { if (!loadedSession) {