mirror of
https://github.com/M66B/FairEmail.git
synced 2025-02-25 15:32:52 +00:00
Prevent resetting signature
This commit is contained in:
parent
a4b48591fc
commit
986028180e
1 changed files with 2 additions and 2 deletions
|
@ -32,7 +32,6 @@ import android.text.Editable;
|
|||
import android.text.TextUtils;
|
||||
import android.text.TextWatcher;
|
||||
import android.text.method.LinkMovementMethod;
|
||||
import android.util.Patterns;
|
||||
import android.view.KeyEvent;
|
||||
import android.view.LayoutInflater;
|
||||
import android.view.Menu;
|
||||
|
@ -1007,7 +1006,8 @@ public class FragmentIdentity extends FragmentBase {
|
|||
etDisplay.setText(identity == null ? null : identity.display);
|
||||
btnColor.setColor(identity == null ? null : identity.color);
|
||||
|
||||
signature = (identity == null ? null : identity.signature);
|
||||
if (signature == null)
|
||||
signature = (identity == null ? null : identity.signature);
|
||||
|
||||
etHost.setText(identity == null ? null : identity.host);
|
||||
rgEncryption.check(identity != null && identity.starttls ? R.id.radio_starttls : R.id.radio_ssl);
|
||||
|
|
Loading…
Reference in a new issue