mirror of
https://github.com/matrix-construct/construct
synced 2024-12-29 08:54:02 +01:00
modules/console: Prefix event::idx to room events line output.
This commit is contained in:
parent
dc82c7e855
commit
a06816b66a
1 changed files with 2 additions and 1 deletions
|
@ -7840,7 +7840,8 @@ console_cmd__room__events(opt &out, const string_view &line)
|
||||||
<< " " << it.event_id()
|
<< " " << it.event_id()
|
||||||
<< std::endl;
|
<< std::endl;
|
||||||
else
|
else
|
||||||
out << pretty_oneline(*it)
|
out << std::left << std::setw(10) << it.event_idx() << " "
|
||||||
|
<< pretty_oneline(*it)
|
||||||
<< std::endl;
|
<< std::endl;
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
|
|
Loading…
Reference in a new issue