mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_invites: Prefer landing page over xmpp URI in shell command
To mirror behavior of prosodyctl invocation
This commit is contained in:
parent
fe97c773a6
commit
b18280d35f
1 changed files with 2 additions and 2 deletions
|
@ -217,7 +217,7 @@ do
|
|||
if not mod_invites then return nil, err or "mod_invites not loaded on this host"; end
|
||||
local invite, err = mod_invites.create_account(username);
|
||||
if not invite then return nil, err; end
|
||||
return true, invite.uri;
|
||||
return true, invite.landing_page or invite.uri;
|
||||
end
|
||||
|
||||
function console_env.invite:create_contact(user_jid, allow_registration)
|
||||
|
@ -226,7 +226,7 @@ do
|
|||
if not mod_invites then return nil, err or "mod_invites not loaded on this host"; end
|
||||
local invite, err = mod_invites.create_contact(username, allow_registration);
|
||||
if not invite then return nil, err; end
|
||||
return true, invite.uri;
|
||||
return true, invite.landing_page or invite.uri;
|
||||
end
|
||||
end
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue