Small improvement

This commit is contained in:
M66B 2018-12-16 10:18:42 +01:00
parent bfdfc0baa2
commit 60d7ce942c
1 changed files with 1 additions and 1 deletions

View File

@ -714,7 +714,7 @@ public class ActivityView extends ActivityBilling implements FragmentManager.OnB
Intent intent = new Intent(Intent.ACTION_SEND); Intent intent = new Intent(Intent.ACTION_SEND);
intent.setType("text/plain"); intent.setType("text/plain");
intent.putExtra(Intent.EXTRA_SUBJECT, getString(R.string.app_name)); intent.putExtra(Intent.EXTRA_SUBJECT, getString(R.string.app_name));
intent.putExtra(Intent.EXTRA_TEXT, getString(R.string.title_try) + "\n\nhttps://email.faircode.eu/"); intent.putExtra(Intent.EXTRA_TEXT, getString(R.string.title_try) + "\n\nhttps://email.faircode.eu/\n\n");
return intent; return intent;
} }