diff --git a/src/main/java/eu/siacs/conversations/xmpp/jingle/JingleConnectionManager.java b/src/main/java/eu/siacs/conversations/xmpp/jingle/JingleConnectionManager.java index f371ae9b1dffddceb320294e6218ec84371a26e8..36879918a45ab4a81e6d4e9f6400899d5dfbf4cc 100644 --- a/src/main/java/eu/siacs/conversations/xmpp/jingle/JingleConnectionManager.java +++ b/src/main/java/eu/siacs/conversations/xmpp/jingle/JingleConnectionManager.java @@ -806,8 +806,8 @@ public class JingleConnectionManager extends AbstractConnectionManager { // subscription (to not leak presence). Therefor a timeout is only appropriate for // contacts where we can expect the 'ringing' response final boolean triggerTimeout = false && - Config.JINGLE_MESSAGE_INIT_STRICT_DEVICE_TIMEOUT - || contact.mutualPresenceSubscription(); + (Config.JINGLE_MESSAGE_INIT_STRICT_DEVICE_TIMEOUT + || contact.mutualPresenceSubscription()); SCHEDULED_EXECUTOR_SERVICE.schedule( () -> { final var currentProposalState = rtpSessionProposals.get(proposal);