fix(UrlParser): stop setting default value 'true' (#10399)
This commit is contained in:

committed by
Rob Wormald

parent
c8989c900f
commit
0d6cc17252
@ -406,7 +406,7 @@ class UrlParser {
|
||||
return;
|
||||
}
|
||||
this.capture(key);
|
||||
let value: any = 'true';
|
||||
let value: any = '';
|
||||
if (this.peekStartsWith('=')) {
|
||||
this.capture('=');
|
||||
var valueMatch = matchUrlQueryParamValue(this.remaining);
|
||||
|
Reference in New Issue
Block a user