mod_tokenauth: Gracefully handle missing tokens

This commit is contained in:
Matthew Wild 2023-03-01 18:43:54 +00:00
parent 4ce832123e
commit 9e02d322d8

View file

@ -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;([^;]+);(.+)$");