We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4d082d6 commit 8168337Copy full SHA for 8168337
public/client.js
@@ -35,7 +35,7 @@ document.getElementById('signOutButton').onclick = () => {
35
};
36
37
function getQueryStringParameter(paramToRetrieve) {
38
- const params = document.URL.split('?')[1].split('&');
+ const params = document.URL.split('#')[0].split('?')[1].split('&');
39
40
for (let i = 0; i < params.length; i++) {
41
const singleParam = params[i].split('=');
0 commit comments