mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_tokenauth: Fix storage API mistake in revocation
This commit is contained in:
parent
9247a37b83
commit
41c23d5616
1 changed files with 1 additions and 1 deletions
|
@ -226,7 +226,7 @@ function revoke_token(token)
|
|||
if token_host ~= module.host then
|
||||
return nil, "invalid-host";
|
||||
end
|
||||
return token_store:set(token_user, token_id, nil);
|
||||
return token_store:set_key(token_user, token_id, nil);
|
||||
end
|
||||
|
||||
function sasl_handler(auth_provider, purpose, extra)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue