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:
Kim Alvefur 2023-03-21 20:43:42 +01:00
parent 8c25001712
commit 14f896bf2d

View file

@ -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 {