From 63f679961e639439f92c9f5560da8c959ada5bc6 Mon Sep 17 00:00:00 2001 From: Matthew Hodgson Date: Fri, 20 May 2016 17:09:04 +0100 Subject: [PATCH] better error msg --- src/components/HomePage.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/HomePage.js b/src/components/HomePage.js index cce4981..e9d3db6 100644 --- a/src/components/HomePage.js +++ b/src/components/HomePage.js @@ -125,7 +125,7 @@ export default React.createClass({ if (!this.isAliasValid(entity) && !this.isUserIdValid(entity) && !this.isMsglinkValid(entity)) { this.setState({ entity: entity, - error: "Invalid room alias, user ID or message permalink", + error: "Invalid room alias, user ID or message permalink '" + entity + "'", }); return; }