We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9059f5c commit 3332aecCopy full SHA for 3332aec
1 file changed
xmppserver/src/main/java/org/jivesoftware/openfire/session/LocalClientSession.java
@@ -966,11 +966,7 @@ static void returnPrivacyListErrorToSender(Packet packet) {
966
@Override
967
public void deliver(Packet queueOrPushStanza) throws UnauthorizedException
968
{
969
- final List<Packet> stanzasToPush = csiManager.queueOrPush(queueOrPushStanza);
970
- if (stanzasToPush.isEmpty()) {
971
- return;
972
- }
973
- pushPackets(stanzasToPush);
+ pushPackets(csiManager.queueOrPush(queueOrPushStanza));
974
}
975
976
/**
0 commit comments