mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
mod_admin_shell: Prevent traceback due to type error
Here too
This commit is contained in:
parent
8362c4824e
commit
ad41d2b5d8
1 changed files with 2 additions and 1 deletions
|
@ -978,7 +978,7 @@ available_columns = {
|
|||
return capitalize(cert_status);
|
||||
end
|
||||
-- no certificate status,
|
||||
if session.cert_chain_errors then
|
||||
if type(session.cert_chain_errors) == "table" then
|
||||
local cert_errors = set.new(session.cert_chain_errors[1]);
|
||||
if cert_errors:contains("certificate has expired") then
|
||||
return "Expired";
|
||||
|
@ -989,6 +989,7 @@ available_columns = {
|
|||
-- TODO borrow more logic from mod_s2s/friendly_cert_error()
|
||||
return "Untrusted";
|
||||
end
|
||||
-- TODO cert_chain_errors can be a string, handle that
|
||||
return "Unknown";
|
||||
end;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue