fix error handling in events and runnables

This commit is contained in:
MihailRis
2024-12-31 10:25:26 +03:00
parent 3304bf27a6
commit 03a3062940
2 changed files with 10 additions and 5 deletions
+4 -1
View File
@@ -172,7 +172,10 @@ local __post_runnables = {}
function __process_post_runnables()
if #__post_runnables then
for _, func in ipairs(__post_runnables) do
func()
local status, result = pcall(func)
if not status then
debug.log("error in post_runnable: "..result)
end
end
__post_runnables = {}
end