From 9b5e10baf2913ca3a56093b86b895b952744e68c Mon Sep 17 00:00:00 2001 From: ameba23 Date: Tue, 22 Feb 2022 10:26:21 +0100 Subject: [PATCH] Bug with conditional when checking if confirm messages are sent --- .../briarproject/briar/remotewipe/RemoteWipeManagerImpl.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/briar-core/src/main/java/org/briarproject/briar/remotewipe/RemoteWipeManagerImpl.java b/briar-core/src/main/java/org/briarproject/briar/remotewipe/RemoteWipeManagerImpl.java index 05b5bbcdb..ec7902b16 100644 --- a/briar-core/src/main/java/org/briarproject/briar/remotewipe/RemoteWipeManagerImpl.java +++ b/briar-core/src/main/java/org/briarproject/briar/remotewipe/RemoteWipeManagerImpl.java @@ -350,7 +350,7 @@ public class RemoteWipeManagerImpl extends ConversationClientImpl allSent = true; } } - } while(allSent = false); + } while(allSent == false); } private MessageId sendConfirmMessage(Transaction txn, Contact contact)