0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-09-26 18:38:52 +02:00

ircd:Ⓜ️ Remove redundant event_id from exception msg.

This commit is contained in:
Jason Volk 2022-07-02 18:47:12 -07:00
parent 6d79237301
commit 2e48147f10

View file

@ -573,10 +573,9 @@ catch(const std::exception &e)
throw m::error
{
http::UNAUTHORIZED, "M_UNVERIFIABLE_SIGNATURE",
"%s key %s for %s :%s",
string_view{event.event_id},
keyid,
"%s key %s :%s",
origin,
keyid,
e.what(),
};
}