From 2e48147f10fdec6114f6dca314fe83f7521c0ce8 Mon Sep 17 00:00:00 2001 From: Jason Volk Date: Sat, 2 Jul 2022 18:47:12 -0700 Subject: [PATCH] ircd::m: Remove redundant event_id from exception msg. --- matrix/event.cc | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/matrix/event.cc b/matrix/event.cc index c9e7c0a09..aad817320 100644 --- a/matrix/event.cc +++ b/matrix/event.cc @@ -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(), }; }