mirror of
https://github.com/matrix-construct/construct
synced 2024-11-29 18:22:50 +01:00
ircd::http: Fix erroneous binding name.
This commit is contained in:
parent
c97cc4ecb7
commit
00bd72e3ff
1 changed files with 2 additions and 2 deletions
|
@ -928,8 +928,8 @@ const
|
|||
(const mutable_buffer &buf)
|
||||
{
|
||||
assert(ret < max);
|
||||
const auto &[_, server_name] {query};
|
||||
out[ret] = url::decode(buf, server_name);
|
||||
const auto &[_, val] {query};
|
||||
out[ret] = url::decode(buf, val);
|
||||
return out[ret];
|
||||
});
|
||||
|
||||
|
|
Loading…
Reference in a new issue