mod_tokenauth: Fix storage API mistake in revocation

This commit is contained in:
Kim Alvefur 2023-03-28 00:30:18 +02:00
parent 9247a37b83
commit 41c23d5616

View file

@ -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)