added anti-nil safety measure

This commit is contained in:
VorTechnix 2024-10-17 09:06:10 -07:00
parent 9efaecc13a
commit 8ef1d348d2
No known key found for this signature in database
GPG Key ID: 091E91A69545D5BA

@ -19,7 +19,7 @@ local function handle_fn_result(...)
"\" with no other output." "\" with no other output."
}, "") }, "")
end end
return success, ret return success or false, ret
end end
return handle_fn_result return handle_fn_result