0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2025-01-18 02:21:56 +01:00

modules/federation/federation: Improve format of backfill grid.

This commit is contained in:
Jason Volk 2018-04-30 22:04:34 -07:00
parent 6036af66b8
commit 6a3f30afb6

View file

@ -354,7 +354,7 @@ feds__backfill(const m::room::id &room_id,
out << i++ << " " << p.first << std::endl;
for(size_t j(0); j < i; ++j)
out << "| " << j << " ";
out << "| " << std::left << std::setw(2) << j;
out << "|" << std::endl;
for(const auto &req : reqs)