0
0
Fork 0
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:
Jason Volk 2022-07-17 15:36:14 -07:00
parent 31dad11e16
commit b637eb0c50

View file

@ -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, '@');