Fixed bug: add the separator when building the list of compression methods from received stanza.

git-svn-id: http://voip.null.ro/svn/yate@4263 acf43c95-373e-0410-b603-e72c3f656dc1
This commit is contained in:
marian 2011-04-05 08:15:56 +00:00
parent 4fe8b3f201
commit c58adb9483
1 changed files with 1 additions and 1 deletions

View File

@ -657,7 +657,7 @@ XMPPFeature* XMPPFeature::fromStreamFeature(XmlElement& xml)
// Get methods
XmlElement* x = 0;
while (0 != (x = XMPPUtils::findNextChild(xml,x,XmlTag::Method)))
meth.append(x->getText(),false);
meth.append(x->getText(),",",false);
f = new XMPPFeatureCompress(meth,required);
}
else {