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 d77e8d9 commit 9dc3840Copy full SHA for 9dc3840
ionic/util/util.ts
@@ -184,7 +184,8 @@ export function getQuerystring(url: string): any {
184
const queries = url.slice(startIndex + 1).split('&');
185
queries.filter((param) => { return param.indexOf('=') > 0; }).forEach((param) => {
186
var split = param.split('=');
187
- queryParams[split[0].toLowerCase()] = split[1].split('#')[0];
+ if(split.length > 1)
188
+ queryParams[split[0].toLowerCase()] = split[1].split('#')[0];
189
});
190
}
191
0 commit comments