mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_tokenauth: Delete grants in the wrong formats on retrieval
This commit is contained in:
parent
33657b4001
commit
4df58bc22f
1 changed files with 5 additions and 0 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue