mirror of https://github.com/M66B/FairEmail.git
Small behavior improvement / open link dialog
This commit is contained in:
parent
454c07e7af
commit
07e83c91f9
|
@ -324,7 +324,7 @@ public class FragmentDialogOpenLink extends FragmentDialogBase {
|
|||
@Override
|
||||
public void onCheckedChanged(CompoundButton compoundButton, boolean checked) {
|
||||
Uri link = (checked ? sanitized : uri);
|
||||
boolean secure = UriHelper.isSecure(link);
|
||||
boolean secure = cbSecure.isChecked();
|
||||
cbSecure.setTag(secure);
|
||||
cbSecure.setChecked(secure);
|
||||
etLink.setText(format(UriHelper.secure(link, secure), context));
|
||||
|
|
Loading…
Reference in New Issue