mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_tokenauth: Handle tokens issued to bare hosts (eg components)
This commit is contained in:
parent
77a9f61e12
commit
92c65ed9af
1 changed files with 1 additions and 1 deletions
|
@ -30,7 +30,7 @@ function create_jid_token(actor_jid, token_jid, token_scope, token_ttl)
|
|||
};
|
||||
|
||||
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);
|
||||
|
||||
return token, token_info;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue