mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_invites: Fix traceback when token_info isn’t set
This commit is contained in:
parent
f7d0caa5ac
commit
a719f5897c
1 changed files with 1 additions and 1 deletions
|
@ -191,7 +191,7 @@ function get(token, username)
|
|||
type = token_info and token_info.type or "roster";
|
||||
uri = token_info and token_info.uri or get_uri("roster", username.."@"..module.host, token);
|
||||
additional_data = token_info and token_info.additional_data or nil;
|
||||
reusable = token_info.reusable;
|
||||
reusable = token_info and token_info.reusable or false;
|
||||
}, valid_invite_mt);
|
||||
end
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue