aboutsummaryrefslogtreecommitdiff
path: root/source/QXmppStream.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'source/QXmppStream.cpp')
-rw-r--r--source/QXmppStream.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/source/QXmppStream.cpp b/source/QXmppStream.cpp
index 636a2437..888f7358 100644
--- a/source/QXmppStream.cpp
+++ b/source/QXmppStream.cpp
@@ -540,6 +540,13 @@ void QXmppStream::parser(const QByteArray& data)
emit iqReceived(discoIq);
}
// XEP-0045: Multi-User Chat
+ else if (QXmppMucAdminIq::isMucAdminIq(element))
+ {
+ QXmppMucAdminIq mucIq;
+ mucIq.parse(element);
+ emit mucAdminIqReceived(mucIq);
+ emit iqReceived(mucIq);
+ }
else if (QXmppMucOwnerIq::isMucOwnerIq(element))
{
QXmppMucOwnerIq mucIq;