mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_tokenauth: Gracefully handle missing tokens
This commit is contained in:
parent
4ce832123e
commit
9e02d322d8
1 changed files with 1 additions and 0 deletions
|
@ -49,6 +49,7 @@ function create_jid_token(actor_jid, token_jid, token_role, token_ttl, token_dat
|
|||
end
|
||||
|
||||
local function parse_token(encoded_token)
|
||||
if not encoded_token then return nil; end
|
||||
local token = base64.decode(encoded_token);
|
||||
if not token then return nil; end
|
||||
local token_jid, token_id = token:match("^1;([^;]+);(.+)$");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue