mirror of
https://github.com/matrix-construct/construct
synced 2024-11-29 18:22:50 +01:00
ircd:Ⓜ️ Slightly improve state tuple pretty().
This commit is contained in:
parent
997da91477
commit
aada1c9f17
1 changed files with 3 additions and 3 deletions
|
@ -1633,10 +1633,10 @@ ircd::m::pretty(const room::state::tuple &state)
|
|||
return;
|
||||
|
||||
s << std::setw(28) << std::right << key
|
||||
<< " : " << at<"event_id"_>(event)
|
||||
<< " :" << json::get<"depth"_>(event)
|
||||
<< " " << at<"event_id"_>(event)
|
||||
<< " " << json::get<"sender"_>(event)
|
||||
<< " " << json::get<"depth"_>(event)
|
||||
<< " " << pretty_oneline(event::prev{event})
|
||||
<< " " << json::get<"content"_>(event)
|
||||
<< std::endl;
|
||||
}};
|
||||
|
||||
|
|
Loading…
Reference in a new issue