From 45c8500f286c27a0760ab36b819010091a5cbe15 Mon Sep 17 00:00:00 2001 From: David Baker Date: Tue, 23 Feb 2016 10:22:22 +0000 Subject: [PATCH] Pass through params for other URLs (in this case, for keypair invite signing urls) --- src/vector/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vector/index.js b/src/vector/index.js index 0b23955745..52cd624c5f 100644 --- a/src/vector/index.js +++ b/src/vector/index.js @@ -99,7 +99,7 @@ function routeUrl(location) { window.matrixChat.showScreen('register', parseQsFromFragment(location)); } else { var hashparts = location.hash.split('?'); - window.matrixChat.showScreen(hashparts[0].substring(2)); + window.matrixChat.showScreen(hashparts[0].substring(2), parseQsFromFragment(location)); } }