diff mod_http_oauth2/mod_http_oauth2.lua @ 5526:46e512f4ba14

mod_http_oauth2: Simplify template using if-falsy operator Relies on Prosody rev af1e3b7d9ea3 which added the {var~if-falsy}, released in 0.12. Since this module requires trunk this is fine.
author Kim Alvefur <zash@zash.se>
date Wed, 07 Jun 2023 12:54:52 +0200
parents 83ebfc367169
children cb141088eff0
line wrap: on
line diff
--- a/mod_http_oauth2/mod_http_oauth2.lua	Wed Jun 07 12:31:52 2023 +0200
+++ b/mod_http_oauth2/mod_http_oauth2.lua	Wed Jun 07 12:54:52 2023 +0200
@@ -801,7 +801,6 @@
 		local extra = {};
 		if params.login_hint then
 			extra.username_hint = (jid.prepped_split(params.login_hint));
-			extra.no_username_hint = not extra.username_hint;
 		end
 		return render_page(templates.login, { state = auth_state; client = client; extra = extra });
 	elseif auth_state.consent == nil then