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

modules/console: Fix feds resend regression after vm::accept removal.

This commit is contained in:
Jason Volk 2018-10-11 01:37:15 -07:00
parent f216f60583
commit 5e35e0593a

View file

@ -7463,9 +7463,19 @@ console_cmd__feds__resend(opt &out, const string_view &line)
event_id
};
const m::vm::opts opts;
// m::vm::accepted a{event, &opts, nullptr, &opts.report};
// m::vm::accept(a);
m::vm::opts opts;
opts.replays = true;
opts.conforming = false;
opts.fetch = false;
opts.eval = false;
opts.write = false;
opts.effects = false;
opts.notify = true;
m::vm::eval
{
m::event{event}, opts
};
return true;
}