diff --git a/router/java/src/net/i2p/router/crypto/ratchet/ECIESAEADEngine.java b/router/java/src/net/i2p/router/crypto/ratchet/ECIESAEADEngine.java index feca72994d456f281326bfebe3de0b5d6de9cab3..56183161cfdce3ff97f348067cfc82da3ea9ca25 100644 --- a/router/java/src/net/i2p/router/crypto/ratchet/ECIESAEADEngine.java +++ b/router/java/src/net/i2p/router/crypto/ratchet/ECIESAEADEngine.java @@ -1271,9 +1271,9 @@ public final class ECIESAEADEngine { * @since 0.9.47 */ private void setResponseTimer(PublicKey from, List<GarlicClove> cloveSet, RatchetSKM skm) { - Destination us = skm.getDestination(); Destination d = skm.getDestination(from); if (d != null) { + Destination us = skm.getDestination(); ACKTimer ack = new ACKTimer(_context, us, d); if (skm.registerTimer(from, null, ack)) { ack.schedule(1000);