modules/console: Improve formatting for feds head output when missing local event.

This commit is contained in:
Jason Volk 2023-04-11 14:35:31 -07:00
parent dd6d17433e
commit ba6030f4ce
1 changed files with 1 additions and 1 deletions

View File

@ -15058,7 +15058,7 @@ console_cmd__feds__head(opt &out, const string_view &line)
if(prev_event.valid)
out << pretty_oneline(prev_event);
else
out << string_view{prev_event_id};
out << result.request->room_id << ' ' << prev_event_id;
out << std::endl;
}