From 4ea1ed832408518841b74d29fb745b9318a730f6 Mon Sep 17 00:00:00 2001 From: MarcoPolo-PasTonMolo Date: Wed, 18 May 2022 16:47:33 +0300 Subject: [PATCH] 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 --- src/xmpp/iq.c | 8 ++++++++ 1 file changed, 8 insertions(+) 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); }