mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_tokenauth: Fix traceback in get_token_session()
Errors in sha256 becasue `token_secret` is nil since it was not passed to _get_validated_token_info(). Looks like a simple oversight in ebe3b2f96cad
This commit is contained in:
parent
8c25001712
commit
14f896bf2d
1 changed files with 2 additions and 2 deletions
|
@ -117,13 +117,13 @@ function get_token_info(token)
|
|||
end
|
||||
|
||||
function get_token_session(token, resource)
|
||||
local token_id, token_user, token_host = parse_token(token);
|
||||
local token_id, token_user, token_host, token_secret = parse_token(token);
|
||||
if not token_id then
|
||||
module:log("warn", "Failed to verify access token: %s", token_user);
|
||||
return nil, "invalid-token-format";
|
||||
end
|
||||
|
||||
local token_info, err = _get_validated_token_info(token_id, token_user, token_host);
|
||||
local token_info, err = _get_validated_token_info(token_id, token_user, token_host, token_secret);
|
||||
if not token_info then return nil, err; end
|
||||
|
||||
return {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue