mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-19 14:19:53 +01:00
Fix bug with displaying existing remote wipers
This commit is contained in:
@@ -612,7 +612,7 @@ public class RemoteWipeManagerImpl extends ConversationClientImpl
|
|||||||
@Override
|
@Override
|
||||||
public boolean remoteWipeIsSetup(Transaction txn) {
|
public boolean remoteWipeIsSetup(Transaction txn) {
|
||||||
try {
|
try {
|
||||||
return !db.getGroupMetadata(txn, localGroup.getId()).isEmpty();
|
return getWipers(txn).size() > 0;
|
||||||
} catch (DbException e) {
|
} catch (DbException e) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user