0
0
Fork 0
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:
Jason Volk 2020-11-08 03:47:27 -08:00
parent dd06b8f22a
commit e7bdcedd29

View file

@ -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"
}; };