Merge pull request #809 from pulser/server-info-fix

Show server info option when blocking is unavailable
This commit is contained in:
Daniel Gultsch 2014-12-25 10:22:47 +01:00
commit 384e1b4149

View file

@ -339,9 +339,11 @@ public class EditAccountActivity extends XmppActivity implements OnAccountUpdate
showQrCode.setVisible(false);
showBlocklist.setVisible(false);
showMoreInfo.setVisible(false);
} else if (mAccount.getStatus() != Account.State.ONLINE || !mAccount.getXmppConnection().getFeatures().blocking()) {
} else if (mAccount.getStatus() != Account.State.ONLINE) {
showBlocklist.setVisible(false);
showMoreInfo.setVisible(false);
} else if (!mAccount.getXmppConnection().getFeatures().blocking()) {
showBlocklist.setVisible(false);
showMoreInfo.setVisible(false);
}
return true;
}