# HG changeset patch # User Kim Alvefur # Date 1683719128 -7200 # Node ID 721f79ac88d8e6d4ac5cd31b571570e886fcf634 # Parent 53f34e17d590b4f1dd0824b9a1e5f935f638da0b mod_auth_oauth_external: Remove untested JID mapping This should probably be opt-in. diff -r 53f34e17d590 -r 721f79ac88d8 mod_auth_oauth_external/mod_auth_oauth_external.lua --- a/mod_auth_oauth_external/mod_auth_oauth_external.lua Wed May 10 13:43:59 2023 +0200 +++ b/mod_auth_oauth_external/mod_auth_oauth_external.lua Wed May 10 13:45:28 2023 +0200 @@ -74,9 +74,6 @@ if type(response) ~= "table" or (response[username_field]) ~= username then return false, nil, nil; end - if response.jid then - self.username, self.realm, self.resource = jid.prepped_split(response.jid, true); - end self.token_info = response; return true, true; end