1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-09-22 19:45:54 -04:00

Merge pull request #1716 from MarcoPolo-PasTonMolo/fix/ignore-nick-change

Respect silent nick change in mucs
This commit is contained in:
Michael Vetter 2022-05-26 21:42:55 +02:00 committed by GitHub
commit 5528a34190
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -752,6 +752,8 @@ _muc_user_self_handler(xmpp_stanza_t* stanza)
log_warning("presence: jid without resource");
return;
}
muc_nick_change_complete(room, nick);
char* reason = stanza_get_reason(stanza);
char* show_str = stanza_get_show(stanza, "online");
char* status_str = stanza_get_status(stanza, NULL);