0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-05-29 00:03:45 +02:00

modules/s_feds: Fix argument error.

This commit is contained in:
Jason Volk 2019-04-18 21:53:07 -07:00
parent c7a872c67a
commit ddd06f5fdd

View file

@ -287,7 +287,7 @@ ircd::m::feds::auth(const opts &opts,
return m::v1::event_auth
{
opts.room_id, opts.user_id, request.buf, std::move(v1opts)
opts.room_id, opts.event_id, request.buf, std::move(v1opts)
};
}};