0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-09-27 11:18:51 +02:00

ircd:Ⓜ️:room::message: Fix incorrect reply fallback parse.

This commit is contained in:
Jason Volk 2022-08-13 18:49:37 -07:00
parent 8461fbcbd5
commit d743925776

View file

@ -57,13 +57,6 @@ const noexcept
reply_to_user.end(), body.end()
};
body = lstrip(body, '>', 1);
body = lstrip(body, ' ', 1);
body = string_view
{
body.begin(), token(body, "\\n", 0).end()
};
tokens(body, "\\n", [&body]
(const string_view &line) noexcept
{