0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-10-03 06:08:52 +02:00

modules/console: Fix fed event remote argument.

This commit is contained in:
Jason Volk 2018-03-22 23:18:59 -07:00
parent 287b5d6374
commit 5d41b4e00b

View file

@ -1916,7 +1916,7 @@ console_cmd__fed__event(const string_view &line)
const net::hostport remote
{
token_count(line, ' ') > 1? token(line, ' ', 0) : event_id.host()
token(line, ' ', 1, event_id.host())
};
m::v1::event::opts opts;