mirror of
https://github.com/bjc/prosody.git
synced 2025-04-05 14:17:37 +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
|
if token_host ~= module.host then
|
||||||
return nil, "invalid-host";
|
return nil, "invalid-host";
|
||||||
end
|
end
|
||||||
return token_store:set(token_user, token_id, nil);
|
return token_store:set_key(token_user, token_id, nil);
|
||||||
end
|
end
|
||||||
|
|
||||||
function sasl_handler(auth_provider, purpose, extra)
|
function sasl_handler(auth_provider, purpose, extra)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue