1
0
Fork 0
mirror of https://github.com/M66B/FairEmail.git synced 2025-01-03 21:55:13 +00:00

Small behavior improvement

This commit is contained in:
M66B 2019-02-07 14:09:18 +00:00
parent 07e12f54b3
commit ab2c273c41

View file

@ -1874,6 +1874,7 @@ public class FragmentCompose extends FragmentBase {
void handleFileShare() {
final Intent intent = new Intent(Intent.ACTION_VIEW);
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
intent.setData(Uri.parse("https://github.com/M66B/open-source-email/blob/master/FAQ.md#user-content-faq49"));
boolean resolves = (intent.resolveActivity(getContext().getPackageManager()) != null);
@ -1885,6 +1886,7 @@ public class FragmentCompose extends FragmentBase {
@Override
public void onClick(View v) {
startActivity(intent);
finish();
}
});
sb.show();