mirror of
https://git.jabber.space/devs/cproof.git
synced 2026-07-26 23:16:20 +00:00
Added password to direct invites
This commit is contained in:
@@ -206,10 +206,12 @@ message_send_invite(const char * const roomjid, const char * const contact,
|
||||
xmpp_ctx_t * const ctx = connection_get_ctx();
|
||||
xmpp_stanza_t *stanza;
|
||||
|
||||
|
||||
muc_member_type_t member_type = muc_member_type(roomjid);
|
||||
if (member_type == MUC_MEMBER_TYPE_PUBLIC) {
|
||||
log_debug("Sending direct invite to %s, for %s", contact, roomjid);
|
||||
stanza = stanza_create_invite(ctx, roomjid, contact, reason);
|
||||
char *password = muc_password(roomjid);
|
||||
stanza = stanza_create_invite(ctx, roomjid, contact, reason, password);
|
||||
} else {
|
||||
log_debug("Sending mediated invite to %s, for %s", contact, roomjid);
|
||||
stanza = stanza_create_mediated_invite(ctx, roomjid, contact, reason);
|
||||
|
||||
Reference in New Issue
Block a user