fix(UrlParser) stop setting default value 'true' (matrix params) (#10946)
This was already fixed recently for query params in #10399.
This commit is contained in:

committed by
Victor Berchet

parent
27539c8b80
commit
4a44832114
@ -391,7 +391,7 @@ class UrlParser {
|
||||
return;
|
||||
}
|
||||
this.capture(key);
|
||||
let value: any = 'true';
|
||||
let value: any = '';
|
||||
if (this.peekStartsWith('=')) {
|
||||
this.capture('=');
|
||||
const valueMatch = matchSegments(this.remaining);
|
||||
|
Reference in New Issue
Block a user