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

modules/m_vm: Post-write hooks to not propagate exceptions.

This commit is contained in:
Jason Volk 2019-07-19 20:12:05 -07:00
parent 8e73834e7a
commit 9c1739a452

View file

@ -106,13 +106,15 @@ ircd::m::vm::post_hook
decltype(ircd::m::vm::notify_hook) decltype(ircd::m::vm::notify_hook)
ircd::m::vm::notify_hook ircd::m::vm::notify_hook
{ {
{ "name", "vm.notify" } { "name", "vm.notify" },
{ "exceptions", false },
}; };
decltype(ircd::m::vm::effect_hook) decltype(ircd::m::vm::effect_hook)
ircd::m::vm::effect_hook ircd::m::vm::effect_hook
{ {
{ "name", "vm.effect" } { "name", "vm.effect" },
{ "exceptions", false },
}; };
// //