mirror of
https://github.com/vanitasvitae/Smack.git
synced 2024-11-22 03:52:06 +01:00
Use IQ.isResponseIQ() in AbstractXMPPConnection
This commit is contained in:
parent
87e0ac9ba1
commit
d1f2631771
1 changed files with 1 additions and 1 deletions
|
@ -1353,7 +1353,7 @@ public abstract class AbstractXMPPConnection implements XMPPConnection {
|
|||
return;
|
||||
}
|
||||
|
||||
assert (response.getType() == IQ.Type.result || response.getType() == IQ.Type.error);
|
||||
assert response.isResponseIQ();
|
||||
|
||||
response.setTo(iqRequest.getFrom());
|
||||
response.setStanzaId(iqRequest.getStanzaId());
|
||||
|
|
Loading…
Reference in a new issue