1
0
Fork 0
mirror of https://github.com/M66B/FairEmail.git synced 2024-12-26 01:36:55 +00:00

Fixed crash

This commit is contained in:
M66B 2018-09-16 13:31:36 +00:00
parent 0b5a7be200
commit 6a63e4e79a

View file

@ -538,6 +538,9 @@ public class ActivityView extends ActivityBilling implements FragmentManager.OnB
@Override
protected void onLoaded(Bundle args, UpdateInfo info) {
if (info == null)
return;
final Intent update = new Intent(Intent.ACTION_VIEW, Uri.parse(info.html_url));
if (update.resolveActivity(getPackageManager()) != null)
new AlertDialog.Builder(ActivityView.this)