Pass through params for other URLs (in this case, for keypair invite signing urls)

pull/993/head
David Baker 2016-02-23 10:22:22 +00:00
parent f2fc4a88ae
commit 45c8500f28
1 changed files with 1 additions and 1 deletions

View File

@ -99,7 +99,7 @@ function routeUrl(location) {
window.matrixChat.showScreen('register', parseQsFromFragment(location)); window.matrixChat.showScreen('register', parseQsFromFragment(location));
} else { } else {
var hashparts = location.hash.split('?'); var hashparts = location.hash.split('?');
window.matrixChat.showScreen(hashparts[0].substring(2)); window.matrixChat.showScreen(hashparts[0].substring(2), parseQsFromFragment(location));
} }
} }