mirror of
https://github.com/matrix-construct/construct
synced 2024-11-29 02:02:38 +01:00
ircd::rfc3986: Use uppercase hex characters for encoding.
This commit is contained in:
parent
dd06b8f22a
commit
e7bdcedd29
1 changed files with 1 additions and 1 deletions
|
@ -557,7 +557,7 @@ ircd::rfc3986::encoder
|
||||||
|
|
||||||
const rule<const string_view> encode
|
const rule<const string_view> encode
|
||||||
{
|
{
|
||||||
*(unreserved | (lit('%') << karma::right_align(2, '0')[karma::hex]))
|
*(unreserved | (lit('%') << karma::right_align(2, '0')[karma::upper[karma::hex]]))
|
||||||
,"url encode"
|
,"url encode"
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue