mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.helpers: Handle missing priorities, happens due to wildcard magic in net.http.server (fixes #1044)
This commit is contained in:
parent
a7693939d4
commit
70fbc5ba58
1 changed files with 1 additions and 1 deletions
|
@ -50,7 +50,7 @@ local function show_events(events, specific_event)
|
|||
local handler_strings = {};
|
||||
for i, handler in ipairs(handlers) do
|
||||
local upvals = debug.string_from_var_table(debug.get_upvalues_table(handler));
|
||||
handler_strings[i] = " "..priorities[handler]..": "..tostring(handler)..(upvals and ("\n "..upvals) or "");
|
||||
handler_strings[i] = " "..(priorities[handler] or "?")..": "..tostring(handler)..(upvals and ("\n "..upvals) or "");
|
||||
end
|
||||
event_handler_arrays[event] = handler_strings;
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue