Merge pull request #993 from vector-im/dbkr/keypair_3pid_invites

Pass through params for other URLs
pull/997/head
David Baker 2016-02-23 11:08:28 +00:00
commit 497cb8bc9c
1 changed files with 2 additions and 3 deletions

View File

@ -87,8 +87,7 @@ function parseQs(location) {
}
// Here, we do some crude URL analysis to allow
// deep-linking. We only support registration
// deep-links in this example.
// deep-linking.
function routeUrl(location) {
var params = parseQs(location);
var loginToken = params.loginToken;
@ -99,7 +98,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));
}
}