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 d714d83 commit 0aff9aaCopy full SHA for 0aff9aa
src/main/java/org/jitsi/impl/protocol/xmpp/ChatRoomImpl.java
@@ -276,7 +276,7 @@ public void leave()
276
| MultiUserChatException.MucNotJoinedException e)
277
{
278
// when the connection is not connected and we get NotConnectedException, this is expected (skip log)
279
- if (!(connection.isConnected() && e instanceof NotConnectedException))
+ if (connection.isConnected() || !(e instanceof NotConnectedException))
280
281
logger.error("Failed to properly leave " + muc, e);
282
}
0 commit comments