# HG changeset patch # User Kim Alvefur # Date 1687094893 -7200 # Node ID 34b63d0144c332244cfd2cdc9f7ed10bd36c574a # Parent 90449babaa48192f5adfe768d36b5877dec4bee0 mod_oidc_userinfo_vcard4: Fix typo diff -r 90449babaa48 -r 34b63d0144c3 mod_oidc_userinfo_vcard4/mod_oidc_userinfo_vcard4.lua --- a/mod_oidc_userinfo_vcard4/mod_oidc_userinfo_vcard4.lua Sat Jun 17 19:03:32 2023 +0200 +++ b/mod_oidc_userinfo_vcard4/mod_oidc_userinfo_vcard4.lua Sun Jun 18 15:28:13 2023 +0200 @@ -10,7 +10,7 @@ local mod_pep = module:depends "pep"; -local gender_map = { M = "male"; F = "female"; O = "other"; N = "nnot applicable"; U = "unknown" } +local gender_map = { M = "male"; F = "female"; O = "other"; N = "not applicable"; U = "unknown" } module:hook("token/userinfo", function(event) local pep_service = mod_pep.get_pep_service(event.username);