mirror of
https://github.com/matrix-construct/construct
synced 2025-01-14 00:34:18 +01:00
ircd:Ⓜ️ Remove redundant event_id from exception msg.
This commit is contained in:
parent
6d79237301
commit
2e48147f10
1 changed files with 2 additions and 3 deletions
|
@ -573,10 +573,9 @@ catch(const std::exception &e)
|
||||||
throw m::error
|
throw m::error
|
||||||
{
|
{
|
||||||
http::UNAUTHORIZED, "M_UNVERIFIABLE_SIGNATURE",
|
http::UNAUTHORIZED, "M_UNVERIFIABLE_SIGNATURE",
|
||||||
"%s key %s for %s :%s",
|
"%s key %s :%s",
|
||||||
string_view{event.event_id},
|
|
||||||
keyid,
|
|
||||||
origin,
|
origin,
|
||||||
|
keyid,
|
||||||
e.what(),
|
e.what(),
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue