1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-10-06 20:03:46 -04:00

Use account muc_nick when no nick for bookmark

This commit is contained in:
James Booth 2014-05-23 00:55:30 +01:00
parent ff37b44a62
commit b85fd5e78c

View File

@ -326,8 +326,10 @@ _bookmark_handle_result(xmpp_conn_t * const conn,
++autojoin_count;
char *account_name = jabber_get_account_name();
ProfAccount *account = accounts_get_account(account_name);
if (name == NULL) {
name = my_jid->localpart;
name = account->muc_nick;
}
log_debug("Autojoin %s with nick=%s", jid, name);
@ -337,6 +339,7 @@ _bookmark_handle_result(xmpp_conn_t * const conn,
muc_join_room(jid, name, password, TRUE);
}
jid_destroy(room_jid);
account_free(account);
} else {
log_debug("Rejected autojoin %s (maximum has been reached)", jid);
}