Compare commits

...

2 Commits
1.883 ... 1.884

Author SHA1 Message Date
M66B
c665dc2d05 1.884 release 2020-01-05 11:13:46 +01:00
M66B
895f7128dd Fixed crash 2020-01-05 11:13:04 +01:00
2 changed files with 6 additions and 4 deletions

View File

@@ -13,8 +13,8 @@ android {
applicationId "eu.faircode.email"
minSdkVersion 21
targetSdkVersion 29
versionCode 883
versionName "1.883"
versionCode 884
versionName "1.884"
archivesBaseName = "FairEmail-v$versionName"
// https://en.wikipedia.org/wiki/List_of_dinosaur_genera

View File

@@ -375,9 +375,11 @@ public class FragmentIdentity extends FragmentBase {
EntityAccount account = (EntityAccount) spAccount.getSelectedItem();
etUser.setEnabled(auth == MailService.AUTH_TYPE_PASSWORD ||
account == null || !provider.imap.host.equals(account.host));
account == null ||
provider.imap.host == null || !provider.imap.host.equals(account.host));
tilPassword.setEnabled(auth == MailService.AUTH_TYPE_PASSWORD ||
account == null || !provider.imap.host.equals(account.host));
account == null ||
provider.imap.host == null || !provider.imap.host.equals(account.host));
}
@Override