From bfbeb388f29081f88ec1eb8fd15b9cacc7f6023c Mon Sep 17 00:00:00 2001 From: Jason Volk Date: Fri, 27 Apr 2018 16:52:02 -0700 Subject: [PATCH] modules/console: Fix the fed head user_id argument. --- modules/console.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/console.cc b/modules/console.cc index dbbca3719..901ccee41 100644 --- a/modules/console.cc +++ b/modules/console.cc @@ -3564,7 +3564,7 @@ console_cmd__fed__head(opt &out, const string_view &line) opts.remote = remote; m::v1::make_join request { - room_id, m::me.user_id, buf, std::move(opts) + room_id, user_id, buf, std::move(opts) }; request.wait(out.timeout);