0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-09-29 20:28:52 +02:00

modules/console: Fix reference to returned array.

This commit is contained in:
Jason Volk 2020-10-03 01:17:40 -07:00
parent 441d3aaf92
commit a550b5c420

View file

@ -14422,7 +14422,7 @@ console_cmd__fed__frontfill(opt &out, const string_view &line)
"room_id", "remote", "earliest", "latest", "[limit]", "[min_depth]" "room_id", "remote", "earliest", "latest", "[limit]", "[min_depth]"
}}; }};
const auto &room_id const auto room_id
{ {
m::room_id(param.at(0)) m::room_id(param.at(0))
}; };