mod_http_oauth2/mod_http_oauth2.lua
changeset 5228 cd5cf4cc6304
parent 5227 8b2a36847912
child 5229 3439eb37f23b
--- a/mod_http_oauth2/mod_http_oauth2.lua	Tue Mar 07 15:27:50 2023 +0000
+++ b/mod_http_oauth2/mod_http_oauth2.lua	Tue Mar 07 15:31:19 2023 +0000
@@ -342,6 +342,8 @@
 end
 
 local function get_request_credentials(request)
+	if not request.headers.authorization then return; end
+
 	local auth_type, auth_data = string.match(request.headers.authorization, "^(%S+)%s(.+)$");
 
 	if auth_type == "Basic" then