diff options
author | Kim Alvefur <zash@zash.se> | 2019-11-01 18:31:12 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2019-11-01 18:31:12 +0100 |
commit | 03adb505558555cd2449bea0ae83c0a89c82a399 (patch) | |
tree | 4e7fb78094e2e7567194135f6eed094fe337e771 /util | |
parent | 9f13e20ffef42d61a3f72a3b11a68125557667c3 (diff) | |
download | prosody-03adb505558555cd2449bea0ae83c0a89c82a399.tar.gz prosody-03adb505558555cd2449bea0ae83c0a89c82a399.zip |
util.error: Add well-known field 'code' in error templates
Intended to be for HTTP-ish numeric status codes
Diffstat (limited to 'util')
-rw-r--r-- | util/error.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/util/error.lua b/util/error.lua index 23551fe2..9ebfa6ab 100644 --- a/util/error.lua +++ b/util/error.lua @@ -14,6 +14,7 @@ local function new(e, context, registry) type = template.type or "cancel"; condition = template.condition or "undefined-condition"; text = template.text; + code = template.code or 500; context = context or template.context or { _error_id = e }; }, error_mt); |