This commit is contained in:
Austin Huang 2020-12-27 22:26:29 -05:00
parent cc05741cd0
commit f9bb71b67a
No known key found for this signature in database
GPG Key ID: 84C23AA04587A91F
1 changed files with 2 additions and 2 deletions

View File

@ -90,8 +90,8 @@ public class AboutFragment extends BasePreferencesFragment {
preference.setOnPreferenceClickListener(p -> {
final Intent intent = new Intent(Intent.ACTION_SEND);
intent.setType("message/rfc822")
.putExtra(Intent.EXTRA_EMAIL, getString(R.string.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_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.");
if (intent.resolveActivity(context.getPackageManager()) != null) startActivity(intent);
return true;
});