From 5f1ff242268edd23bb3e54eace5f87f5c0997f5c Mon Sep 17 00:00:00 2001 From: Rello Date: Thu, 4 Jun 2026 12:15:12 +0200 Subject: [PATCH] fix: do not trigger false remote wipe message remote wipe confirmation was called by every accountRemoved Signed-off-by: Rello --- src/gui/remotewipe.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/gui/remotewipe.cpp b/src/gui/remotewipe.cpp index 6613443dec5e0..dc97181beef47 100644 --- a/src/gui/remotewipe.cpp +++ b/src/gui/remotewipe.cpp @@ -27,6 +27,10 @@ RemoteWipe::RemoteWipe(AccountPtr account, QObject *parent) return; } + if (!_account->isRemoteWipeRequested_HACK()) { + return; + } + notifyServerSuccess(); });