0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-05-29 00:03:45 +02:00

modules/key/server: Fix missing urldecode (regression 086dfc4839).

This commit is contained in:
Jason Volk 2020-10-15 21:54:19 -07:00
parent 785d9e3af4
commit 2710701533

View file

@ -33,7 +33,7 @@ handle_get(client &client,
char key_id_buf[256];
const auto key_id
{
request.params
url::decode(key_id_buf, request.params)
};
m::keys::get(my_host(), key_id, [&client]