mirror of
https://github.com/bjc/prosody.git
synced 2025-04-06 22:57:38 +03:00
mod_websocket: Include the value of cross_domain_websocket in debug message
This commit is contained in:
parent
7125a0dd10
commit
62082d5832
1 changed files with 1 additions and 1 deletions
|
@ -159,7 +159,7 @@ function handle_request(event)
|
|||
end
|
||||
|
||||
if not check_origin(request.headers.origin or "") then
|
||||
module:log("debug", "Origin %s is not allowed by 'cross_domain_websocket'", request.headers.origin or "(missing header)");
|
||||
module:log("debug", "Origin %s is not allowed by 'cross_domain_websocket' [ %s ]", request.headers.origin or "(missing header)", cross_domain);
|
||||
return 403;
|
||||
end
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue