mod_invites: Fix traceback when token_info isn’t set

This commit is contained in:
Emmanuel Gil Peyrot 2024-07-31 22:06:18 +02:00
parent f7d0caa5ac
commit a719f5897c

View file

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