mirror of
https://github.com/matrix-construct/construct
synced 2024-12-28 00:14:07 +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()
|
||||
<< std::endl;
|
||||
else
|
||||
out << pretty_oneline(*it)
|
||||
out << std::left << std::setw(10) << it.event_idx() << " "
|
||||
<< pretty_oneline(*it)
|
||||
<< std::endl;
|
||||
|
||||
return true;
|
||||
|
|
Loading…
Reference in a new issue