mod_tokenauth: Delete grants in the wrong formats on retrieval

This commit is contained in:
Kim Alvefur 2023-10-09 20:26:30 +02:00
parent 33657b4001
commit 4df58bc22f

View file

@ -159,6 +159,11 @@ local function _get_validated_grant_info(username, grant)
return nil, "expired";
end
if not grant.tokens then
module:log("debug", "Token grant without tokens, cleaning up");
token_store:set_key(username, grant.id, nil);
return nil, "invalid";
end
return grant;
end