0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-05-29 00:03:45 +02:00

ircd:Ⓜ️:homeserver::bootstrap: Fix redundant message prepend during error propagation.

This commit is contained in:
Jason Volk 2020-10-31 01:28:33 -07:00
parent 92b3ba4643
commit 038bb33576

View file

@ -395,9 +395,7 @@ catch(const std::exception &e)
{
throw ircd::error
{
"bootstrap %s :%s",
server_name(homeserver),
e.what(),
ircd::error::hide_name, "%s", e.what(),
};
}
catch(const ctx::terminated &)