mod_tokenauth: Handle tokens issued to bare hosts (eg components)

This commit is contained in:
Kim Alvefur 2020-02-28 14:13:04 +01:00
parent 77a9f61e12
commit 92c65ed9af

View file

@ -30,7 +30,7 @@ function create_jid_token(actor_jid, token_jid, token_scope, token_ttl)
}; };
local token_id = id.long(); local token_id = id.long();
local token = base64.encode("1;"..token_username.."@"..token_host..";"..token_id); local token = base64.encode("1;"..jid.join(token_username, token_host)..";"..token_id);
token_store:set(token_username, token_id, token_info); token_store:set(token_username, token_id, token_info);
return token, token_info; return token, token_info;