diff options
author | MarcoPolo-PasTonMolo <marcopolopastonmolo@protonmail.com> | 2022-05-18 16:47:33 +0300 |
---|---|---|
committer | MarcoPolo-PasTonMolo <marcopolopastonmolo@protonmail.com> | 2022-05-18 16:47:33 +0300 |
commit | 4ea1ed832408518841b74d29fb745b9318a730f6 (patch) | |
tree | 27cf76ce89d912d36a5725c71e739969644ae89d | |
parent | b4dc4f69c10b97c102de03015db437d0cdcb27ee (diff) | |
download | profani-tty-4ea1ed832408518841b74d29fb745b9318a730f6.tar.gz |
Fix room name not updating.
Now whenever the name of a room changes, either in profanity or another client, it gets updated inside profanity. Fixes https://github.com/profanity-im/profanity/issues/1710
-rw-r--r-- | src/xmpp/iq.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/xmpp/iq.c b/src/xmpp/iq.c index 1cac9096..c97fcbad 100644 --- a/src/xmpp/iq.c +++ b/src/xmpp/iq.c @@ -891,6 +891,14 @@ _caps_response_id_handler(xmpp_stanza_t* const stanza, void* const userdata) } else { log_debug("Capabilities not cached: %s, storing", given_sha1); EntityCapabilities* capabilities = stanza_create_caps_from_query_element(query); + + // Update window name + ProfMucWin* win = wins_get_muc(from); + if (win != NULL) { + free(win->room_name); + win->room_name = strdup(capabilities->identity->name); + } + caps_add_by_ver(given_sha1, capabilities); caps_destroy(capabilities); } |