From 63d04772234be600ec2898bdcb7f13fcc33dcb88 Mon Sep 17 00:00:00 2001 From: Kegan Dougal Date: Thu, 17 Dec 2015 15:01:07 +0000 Subject: [PATCH] Pass through the starting query params from the URL --- src/vector/index.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/vector/index.js b/src/vector/index.js index efca1e8243..3812e65407 100644 --- a/src/vector/index.js +++ b/src/vector/index.js @@ -153,7 +153,8 @@ function loadApp() { onNewScreen={onNewScreen} registrationUrl={makeRegistrationUrl()} ConferenceHandler={VectorConferenceHandler} - config={configJson} />, + config={configJson} + startingQueryParams={parseQsFromFragment(window.location)} />, document.getElementById('matrixchat') ); }