mod_http_file_share: Clarify message about missing Authorization header

This commit is contained in:
Kim Alvefur 2021-01-29 15:34:15 +01:00
parent 2c8349a602
commit d068be45d5

View file

@ -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);