mirror of
https://github.com/matrix-construct/construct
synced 2024-11-28 17:52:54 +01:00
modules/console: Improve formatting for feds head output when missing local event.
This commit is contained in:
parent
dd6d17433e
commit
ba6030f4ce
1 changed files with 1 additions and 1 deletions
|
@ -15058,7 +15058,7 @@ console_cmd__feds__head(opt &out, const string_view &line)
|
||||||
if(prev_event.valid)
|
if(prev_event.valid)
|
||||||
out << pretty_oneline(prev_event);
|
out << pretty_oneline(prev_event);
|
||||||
else
|
else
|
||||||
out << string_view{prev_event_id};
|
out << result.request->room_id << ' ' << prev_event_id;
|
||||||
|
|
||||||
out << std::endl;
|
out << std::endl;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue