From fbec16f1a208881ea49923287aae27978d79681e Mon Sep 17 00:00:00 2001
From: Florent Le Coz <louiz@louiz.org>
Date: Sat, 4 Jan 2014 01:53:50 +0100
Subject: Possibility to change a channel's topic

---
 src/xmpp/xmpp_component.cpp | 3 +++
 1 file changed, 3 insertions(+)

(limited to 'src/xmpp')

diff --git a/src/xmpp/xmpp_component.cpp b/src/xmpp/xmpp_component.cpp
index a0054ea..b370daa 100644
--- a/src/xmpp/xmpp_component.cpp
+++ b/src/xmpp/xmpp_component.cpp
@@ -217,6 +217,9 @@ void XmppComponent::handle_message(const Stanza& stanza)
       if (to.resource.empty())
         if (body && !body->get_inner().empty())
           bridge->send_channel_message(iid, body->get_inner());
+      XmlNode* subject = stanza.get_child(COMPONENT_NS":subject");
+      if (subject)
+        bridge->set_channel_topic(iid, subject->get_inner());
     }
   else
     {
-- 
cgit v1.2.3