mirror of
https://github.com/profanity-im/profanity.git
synced 2024-10-27 20:30:13 -04:00
Remove duplicate code in roster_update
Part of what `roster_update()` does manually is actually done in `roster_change_name()`.
This commit is contained in:
parent
13088e0a1a
commit
dacbe25d93
@ -303,15 +303,7 @@ roster_update(const char *const barejid, const char *const name, GSList *groups,
|
|||||||
p_contact_set_subscription(contact, subscription);
|
p_contact_set_subscription(contact, subscription);
|
||||||
p_contact_set_pending_out(contact, pending_out);
|
p_contact_set_pending_out(contact, pending_out);
|
||||||
|
|
||||||
const char * const new_name = name;
|
roster_change_name(contact, name);
|
||||||
char * current_name = NULL;
|
|
||||||
if (p_contact_name(contact)) {
|
|
||||||
current_name = strdup(p_contact_name(contact));
|
|
||||||
}
|
|
||||||
|
|
||||||
p_contact_set_name(contact, new_name);
|
|
||||||
_replace_name(current_name, new_name, barejid);
|
|
||||||
free(current_name);
|
|
||||||
|
|
||||||
GSList *curr_new_group = groups;
|
GSList *curr_new_group = groups;
|
||||||
while (curr_new_group) {
|
while (curr_new_group) {
|
||||||
|
Loading…
Reference in New Issue
Block a user