mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_s2s: session.from_host does not allways exist on incoming connections, true and nil or "our hostname" does not evaluate to what we want here
This commit is contained in:
parent
9c4985d9d8
commit
5c16f18d72
1 changed files with 1 additions and 1 deletions
|
@ -211,7 +211,7 @@ end
|
|||
|
||||
--- Helper to check that a session peer's certificate is valid
|
||||
local function check_cert_status(session)
|
||||
local host = session.direction == "incoming" and session.from_host or session.to_host
|
||||
local host = session.direction == "outgoing" and session.to_host or session.from_host
|
||||
local conn = session.conn:socket()
|
||||
local cert
|
||||
if conn.getpeercertificate then
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue