mirror of
https://github.com/M66B/FairEmail.git
synced 2024-12-25 01:06:04 +00:00
0.43 release
This commit is contained in:
parent
94e8bc8e70
commit
2980a46b5c
4 changed files with 4 additions and 3 deletions
Binary file not shown.
|
@ -6,8 +6,8 @@ android {
|
|||
applicationId "eu.faircode.email"
|
||||
minSdkVersion 23
|
||||
targetSdkVersion 28
|
||||
versionCode 42
|
||||
versionName "0.42"
|
||||
versionCode 43
|
||||
versionName "0.43"
|
||||
archivesBaseName = "FairEmail-v$versionName"
|
||||
|
||||
javaCompileOptions {
|
||||
|
|
|
@ -774,7 +774,7 @@ public class FragmentAccount extends FragmentEx {
|
|||
tilPassword.getEditText().setText(account == null ? null : account.password);
|
||||
|
||||
etName.setText(account == null ? null : account.name);
|
||||
etSignature.setText(account == null ? null : Html.fromHtml(account.signature));
|
||||
etSignature.setText(account == null || account.signature == null ? null : Html.fromHtml(account.signature));
|
||||
|
||||
cbSynchronize.setChecked(account == null ? true : account.synchronize);
|
||||
cbPrimary.setChecked(account == null ? true : account.primary);
|
||||
|
|
|
@ -1624,6 +1624,7 @@ public class ServiceSynchronize extends LifecycleService {
|
|||
join(main);
|
||||
|
||||
main = null;
|
||||
state = null;
|
||||
|
||||
EntityLog.log(ServiceSynchronize.this, "Main stopped " + main);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue