diff options
author | Kevin Smith <git@kismith.co.uk> | 2011-09-28 10:11:52 (GMT) |
---|---|---|
committer | Kevin Smith <git@kismith.co.uk> | 2011-09-28 10:11:52 (GMT) |
commit | ef9ce71646ddf6bdaeafc0776724bf1a6ff18d9d (patch) | |
tree | addedda39ab3be3c693262518e9a0c64633d93df /Swiften/Parser/PayloadParsers | |
parent | d5efab53e5c4dee50a55241e840a26814d115ad7 (diff) | |
download | swift-contrib-ef9ce71646ddf6bdaeafc0776724bf1a6ff18d9d.zip swift-contrib-ef9ce71646ddf6bdaeafc0776724bf1a6ff18d9d.tar.bz2 |
Parse MUC status codes correctly again.
Means rooms will be unlocked after creation correctly.
Diffstat (limited to 'Swiften/Parser/PayloadParsers')
-rw-r--r-- | Swiften/Parser/PayloadParsers/MUCUserPayloadParser.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Swiften/Parser/PayloadParsers/MUCUserPayloadParser.cpp b/Swiften/Parser/PayloadParsers/MUCUserPayloadParser.cpp index 71ae571..e6ccbbe 100644 --- a/Swiften/Parser/PayloadParsers/MUCUserPayloadParser.cpp +++ b/Swiften/Parser/PayloadParsers/MUCUserPayloadParser.cpp @@ -18,7 +18,7 @@ void MUCUserPayloadParser::handleTree(ParserElement::ref root) { MUCItem item = MUCItemParser::itemFromTree(itemElement); getPayloadInternal()->addItem(item); } - foreach (ParserElement::ref statusElement, root->getChildren("item", "http://jabber.org/protocol/muc#user")) { + foreach (ParserElement::ref statusElement, root->getChildren("status", "http://jabber.org/protocol/muc#user")) { MUCUserPayload::StatusCode status; try { status.code = boost::lexical_cast<int>(statusElement->getAttributes().getAttribute("code").c_str()); |