mirror of
https://github.com/M66B/FairEmail.git
synced 2024-12-29 11:15:51 +00:00
Prevent crash
This commit is contained in:
parent
ab15deea12
commit
d731876a51
1 changed files with 5 additions and 3 deletions
|
@ -5453,20 +5453,22 @@ public class AdapterMessage extends RecyclerView.Adapter<AdapterMessage.ViewHold
|
||||||
uriTitle.getHost().equalsIgnoreCase(uri.getHost())
|
uriTitle.getHost().equalsIgnoreCase(uri.getHost())
|
||||||
? View.GONE : View.VISIBLE);
|
? View.GONE : View.VISIBLE);
|
||||||
|
|
||||||
return new AlertDialog.Builder(getContext())
|
final Context context = getContext();
|
||||||
|
|
||||||
|
return new AlertDialog.Builder(context)
|
||||||
.setView(dview)
|
.setView(dview)
|
||||||
.setPositiveButton(android.R.string.ok, new DialogInterface.OnClickListener() {
|
.setPositiveButton(android.R.string.ok, new DialogInterface.OnClickListener() {
|
||||||
@Override
|
@Override
|
||||||
public void onClick(DialogInterface dialog, int which) {
|
public void onClick(DialogInterface dialog, int which) {
|
||||||
Uri uri = Uri.parse(etLink.getText().toString());
|
Uri uri = Uri.parse(etLink.getText().toString());
|
||||||
Helper.view(getContext(), uri, false);
|
Helper.view(context, uri, false);
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
.setNeutralButton(R.string.title_browse, new DialogInterface.OnClickListener() {
|
.setNeutralButton(R.string.title_browse, new DialogInterface.OnClickListener() {
|
||||||
@Override
|
@Override
|
||||||
public void onClick(DialogInterface dialog, int which) {
|
public void onClick(DialogInterface dialog, int which) {
|
||||||
Uri uri = Uri.parse(etLink.getText().toString());
|
Uri uri = Uri.parse(etLink.getText().toString());
|
||||||
Helper.view(getContext(), uri, true);
|
Helper.view(context, uri, true);
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
.setNegativeButton(android.R.string.cancel, null)
|
.setNegativeButton(android.R.string.cancel, null)
|
||||||
|
|
Loading…
Reference in a new issue