0
0
Fork 0
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:
Jason Volk 2019-03-25 17:44:44 -07:00
parent dc82c7e855
commit a06816b66a

View file

@ -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;