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

modules/vm: Call the post hook for EDU's as well.

This commit is contained in:
Jason Volk 2019-04-06 18:18:17 -07:00
parent 5384bd8609
commit 30834dfd23

View file

@ -667,6 +667,9 @@ ircd::m::vm::execute_edu(eval &eval,
if(eval.opts->eval)
eval_hook(event, eval);
if(eval.opts->post)
post_hook(event, eval);
return fault::ACCEPT;
}