# HG changeset patch # User Kim Alvefur # Date 1679956218 -7200 # Node ID c7253174503e3ec9f4bba29d6c1cef77c1389b2b # Parent c87ac7d1967f2668df64d0cfd3dc1752bb3e1e6d mod_tokenauth: Fix storage API mistake in revocation diff -r c87ac7d1967f -r c7253174503e plugins/mod_tokenauth.lua --- a/plugins/mod_tokenauth.lua Mon Mar 27 20:51:07 2023 +0100 +++ b/plugins/mod_tokenauth.lua Tue Mar 28 00:30:18 2023 +0200 @@ -226,7 +226,7 @@ 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)