diff options
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/mod_http_file_share.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_http_file_share.lua b/plugins/mod_http_file_share.lua index e9c00399..d960e853 100644 --- a/plugins/mod_http_file_share.lua +++ b/plugins/mod_http_file_share.lua @@ -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); |