mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_tokenauth: Fix misplaced closing parenthesis
`type(x ~= y)` is always a string, thus truthy
This commit is contained in:
parent
aabfdaf01a
commit
7b7cad2b66
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue