mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
mod_http_file_share: Clarify message about missing Authorization header
This commit is contained in:
parent
2c8349a602
commit
d068be45d5
1 changed files with 1 additions and 1 deletions
|
@ -161,7 +161,7 @@ function handle_upload(event, path) -- PUT /upload/:slot
|
|||
authz = authz:match("^Bearer (.*)")
|
||||
end
|
||||
if not authz then
|
||||
module:log("debug", "Missing Authorization");
|
||||
module:log("debug", "Missing or malformed Authorization header");
|
||||
return 403;
|
||||
end
|
||||
local authed, upload_info = jwt.verify(secret, authz);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue