Skip to content

Commit

Permalink
OF-1771 Remove !
Browse files Browse the repository at this point in the history
  • Loading branch information
mnsuccess authored and guusdk committed Jun 24, 2019
1 parent ab71a9e commit a74de09
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -369,7 +369,7 @@ private IQ getIQ(Element doc) {
return new Roster(doc);
}else if (query != null && "jabber:iq:version".equals(query.getNamespaceURI())) {
IQ iq = new IQ(doc);
if (iq.getType().equals(IQ.Type.result) && !iq.getFrom().equals(session.getAddress())){
if (iq.getType().equals(IQ.Type.result) && iq.getFrom().equals(session.getAddress())){
try {
List<Element> elements = query.elements();
if (elements.size() >0){
Expand Down

0 comments on commit a74de09

Please sign in to comment.