mirror of
https://github.com/matrix-construct/construct
synced 2024-11-26 00:32:35 +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 !$+*'(),
|
||||
//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.
|
||||
ascii::print - '%'
|
||||
(~ascii::cntrl) - '%'
|
||||
,"url unreserved characters"
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue