mirror of
https://github.com/matrix-construct/construct
synced 2025-02-17 01:00:10 +01:00
ircd::rfc3986::decoder: Relax unreserved characters to non-control.
This commit is contained in:
parent
b407769e21
commit
9d45118628
1 changed files with 2 additions and 2 deletions
|
@ -448,9 +448,9 @@ ircd::rfc3986::decoder
|
||||||
// unreserved characters and !$+*'(),
|
// unreserved characters and !$+*'(),
|
||||||
//char_("A-Za-z0-9._~!$+*'(),-")
|
//char_("A-Za-z0-9._~!$+*'(),-")
|
||||||
|
|
||||||
//NOTE: allow any printable character here. No reason for trouble with
|
//NOTE: allow any non-control character here. No reason for trouble with
|
||||||
//NOTE: already-decoded inputs unless some other grammar expects it.
|
//NOTE: already-decoded inputs unless some other grammar expects it.
|
||||||
ascii::print - '%'
|
(~ascii::cntrl) - '%'
|
||||||
,"url unreserved characters"
|
,"url unreserved characters"
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue