forked from mirror/monocles_chat_clean
fixed regression that would not show clear devices
This commit is contained in:
parent
8a2e380c7f
commit
b582e56c72
1 changed files with 1 additions and 1 deletions
|
@ -523,7 +523,7 @@ public class EditAccountActivity extends XmppActivity implements OnAccountUpdate
|
|||
}
|
||||
mamPrefs.setVisible(mAccount.getXmppConnection().getFeatures().mam());
|
||||
Set<Integer> otherDevices = mAccount.getAxolotlService().getOwnDeviceIds();
|
||||
if (otherDevices == null || otherDevices.isEmpty() || Config.supportOmemo()) {
|
||||
if (otherDevices == null || otherDevices.isEmpty() || !Config.supportOmemo()) {
|
||||
clearDevices.setVisible(false);
|
||||
}
|
||||
changePresence.setVisible(manuallyChangePresence());
|
||||
|
|
Loading…
Add table
Reference in a new issue