mirror of
https://github.com/KokaKiwi/BarInsta
synced 2024-11-26 08:37:29 +00:00
This commit is contained in:
parent
cc05741cd0
commit
f9bb71b67a
@ -90,8 +90,8 @@ public class AboutFragment extends BasePreferencesFragment {
|
|||||||
preference.setOnPreferenceClickListener(p -> {
|
preference.setOnPreferenceClickListener(p -> {
|
||||||
final Intent intent = new Intent(Intent.ACTION_SEND);
|
final Intent intent = new Intent(Intent.ACTION_SEND);
|
||||||
intent.setType("message/rfc822")
|
intent.setType("message/rfc822")
|
||||||
.putExtra(Intent.EXTRA_EMAIL, getString(R.string.feedback_summary))
|
.putExtra(Intent.EXTRA_EMAIL, getString(R.string.about_feedback_summary))
|
||||||
.putExtra(Intent.EXTRA_TEXT, "Please note that your email address and the entire content will be published onto GitHub issues. If you do not wish to do that, use other contact methods instead.")
|
.putExtra(Intent.EXTRA_TEXT, "Please note that your email address and the entire content will be published onto GitHub issues. If you do not wish to do that, use other contact methods instead.");
|
||||||
if (intent.resolveActivity(context.getPackageManager()) != null) startActivity(intent);
|
if (intent.resolveActivity(context.getPackageManager()) != null) startActivity(intent);
|
||||||
return true;
|
return true;
|
||||||
});
|
});
|
||||||
|
Loading…
Reference in New Issue
Block a user