From 14e16e894578371843221017bf2ecefacea942d4 Mon Sep 17 00:00:00 2001 From: Matthew Hodgson Date: Fri, 15 Jul 2016 16:03:51 +0100 Subject: [PATCH] fix room links on safari --- 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 e17dfb8..7898e11 100644 --- a/src/components/HomePage.js +++ b/src/components/HomePage.js @@ -114,7 +114,7 @@ export default React.createClass({ }, onHashChange() { - var entity = window.location.hash.substr(2); // strip off #/ prefix + var entity = unescape(window.location.hash.substr(2)); // strip off #/ prefix if (!entity) { this.setState({ entity: null,