Fix assert statement in XMPPTCPConnection

This commit is contained in:
Florian Schmaus 2015-03-23 22:44:15 +01:00
parent 7cefe63175
commit b7fbd0614e
1 changed files with 1 additions and 1 deletions

View File

@ -988,7 +988,7 @@ public class XMPPTCPConnection extends AbstractXMPPConnection {
if ("jabber:client".equals(parser.getNamespace(null))) {
streamId = parser.getAttributeValue("", "id");
String reportedServiceName = parser.getAttributeValue("", "from");
assert(reportedServiceName.equals(config.getServiceName()));
assert(config.getServiceName().equals(reportedServiceName));
}
break;
case "error":