mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_tokenauth: Ignore invalid grants in storage that have no id
This commit is contained in:
parent
34b4ec02fe
commit
ad3ab533ed
1 changed files with 1 additions and 1 deletions
|
@ -145,7 +145,7 @@ local function _get_validated_grant_info(username, grant)
|
|||
if type(grant) == "string" then
|
||||
grant = token_store:get_key(username, grant);
|
||||
end
|
||||
if not grant or not grant.created then return nil; end
|
||||
if not grant or not grant.created or not grant.id then return nil; end
|
||||
|
||||
-- Invalidate grants from before last password change
|
||||
local account_info = usermanager.get_account_info(username, module.host);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue