mod_http_oauth2/mod_http_oauth2.lua
changeset 5202 2e8a7a0f932d
parent 5200 6b63af56c8ac
child 5203 f48628dc83f1
--- a/mod_http_oauth2/mod_http_oauth2.lua	Fri Mar 03 22:48:14 2023 +0100
+++ b/mod_http_oauth2/mod_http_oauth2.lua	Fri Mar 03 22:48:38 2023 +0100
@@ -291,8 +291,8 @@
 
 -- "token" aka implicit flow is considered insecure
 local allowed_response_type_handlers = module:get_option_set("allowed_oauth2_response_types", {"code"})
-for handler_type in pairs(allowed_response_type_handlers) do
-	if not allowed_grant_type_handlers:contains(handler_type) then
+for handler_type in pairs(response_type_handlers) do
+	if not allowed_response_type_handlers:contains(handler_type) then
 		grant_type_handlers[handler_type] = nil;
 	end
 end