mirror of
https://github.com/matrix-construct/construct
synced 2024-11-17 15:30:52 +01:00
modules/m_vm: Post-write hooks to not propagate exceptions.
This commit is contained in:
parent
8e73834e7a
commit
9c1739a452
1 changed files with 4 additions and 2 deletions
|
@ -106,13 +106,15 @@ ircd::m::vm::post_hook
|
|||
decltype(ircd::m::vm::notify_hook)
|
||||
ircd::m::vm::notify_hook
|
||||
{
|
||||
{ "name", "vm.notify" }
|
||||
{ "name", "vm.notify" },
|
||||
{ "exceptions", false },
|
||||
};
|
||||
|
||||
decltype(ircd::m::vm::effect_hook)
|
||||
ircd::m::vm::effect_hook
|
||||
{
|
||||
{ "name", "vm.effect" }
|
||||
{ "name", "vm.effect" },
|
||||
{ "exceptions", false },
|
||||
};
|
||||
|
||||
//
|
||||
|
|
Loading…
Reference in a new issue