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

ircd:Ⓜ️ Fix pretty(event) formatting.

This commit is contained in:
Jason Volk 2018-04-15 04:16:40 -07:00
parent 2dad8d8832
commit 416d199736

View file

@ -300,7 +300,7 @@ ircd::m::pretty(const event &event)
const auto &hashes{json::get<"hashes"_>(event)};
for(const auto &hash : hashes)
{
s << std::setw(16) << std::right << "[hash]" << ": "
s << std::setw(16) << std::right << "[hash]" << " :"
<< hash.first
<< " "
<< unquote(hash.second)