mirror of
https://github.com/matrix-construct/construct
synced 2025-03-14 05:20:17 +01:00
ircd::rfc3986: Fix missing exception translation.
This commit is contained in:
parent
31dad11e16
commit
b637eb0c50
1 changed files with 1 additions and 1 deletions
|
@ -411,7 +411,7 @@ namespace ircd::rfc3986::parser
|
|||
ircd::rfc3986::uri::uri(const string_view &input)
|
||||
{
|
||||
const char *start(begin(input)), *const stop(end(input));
|
||||
ircd::parse(start, stop, parser::parse_uri, *this);
|
||||
ircd::parse<error>(start, stop, parser::parse_uri, *this);
|
||||
|
||||
//TODO: XXX Can this go?
|
||||
this->user = rstrip(this->user, '@');
|
||||
|
|
Loading…
Add table
Reference in a new issue