mod_http_oauth2: Fix to disable disabled response handlers correctly
authorKim Alvefur <zash@zash.se>
Fri, 10 Mar 2023 12:03:23 +0100
changeset 5235 bef543068077
parent 5234 ac252db71027
child 5236 0f943619e01a
mod_http_oauth2: Fix to disable disabled response handlers correctly Wrong table
mod_http_oauth2/mod_http_oauth2.lua
--- a/mod_http_oauth2/mod_http_oauth2.lua	Fri Mar 10 12:01:52 2023 +0100
+++ b/mod_http_oauth2/mod_http_oauth2.lua	Fri Mar 10 12:03:23 2023 +0100
@@ -457,7 +457,7 @@
 for handler_type in pairs(response_type_handlers) do
 	if not allowed_response_type_handlers:contains(handler_type) then
 		module:log("debug", "Response type %q disabled", handler_type);
-		grant_type_handlers[handler_type] = nil;
+		response_type_handlers[handler_type] = nil;
 	else
 		module:log("debug", "Response type %q enabled", handler_type);
 	end