mod_tokenauth: Fix misplaced closing parenthesis

`type(x ~= y)` is always a string, thus truthy
This commit is contained in:
Kim Alvefur 2023-03-02 22:34:29 +01:00
parent aabfdaf01a
commit 7b7cad2b66

View file

@ -25,7 +25,7 @@ function create_jid_token(actor_jid, token_jid, token_role, token_ttl, token_dat
return nil, "invalid-host";
end
if (token_data and type(token_data) ~= "table") or (token_purpose and type(token_purpose ~= "string")) then
if (token_data and type(token_data) ~= "table") or (token_purpose and type(token_purpose) ~= "string") then
return nil, "bad-request";
end