0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-11-18 07:50:57 +01:00

ircd:Ⓜ️:pretty: Add auth events to multiline output.

This commit is contained in:
Jason Volk 2023-03-01 11:39:05 -08:00
parent d264a5019d
commit b96c552e46

View file

@ -483,11 +483,10 @@ ircd::m::pretty(std::ostream &s,
s << std::endl;
}
const m::event::prev prev
{
event
};
const m::event::auth auth{event};
pretty(s, auth);
const m::event::prev prev{event};
pretty(s, prev);
if(!contents.empty())