changeset 5190:1733f184e2bb

mod_http_oauth2: Fix to actually return OOB response
author Kim Alvefur <zash@zash.se>
date Fri, 03 Mar 2023 14:22:05 +0100
parents 4ee8eb1134a8
children f5a58cbe86e4
files mod_http_oauth2/mod_http_oauth2.lua
diffstat 1 files changed, 1 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/mod_http_oauth2/mod_http_oauth2.lua	Fri Mar 03 11:24:05 2023 +0000
+++ b/mod_http_oauth2/mod_http_oauth2.lua	Fri Mar 03 14:22:05 2023 +0100
@@ -129,6 +129,7 @@
 			message = "Here's your authorization code, copy and paste it into your app:";
 			extra = code;
 		}) or ("Here's your authorization code:\n%s\n"):format(code);
+		return response;
 	end
 
 	local redirect = url.parse(redirect_uri);