Skip to content

Commit

Permalink
fix email subject for backup
Browse files Browse the repository at this point in the history
  • Loading branch information
SamouraiDev committed Nov 27, 2018
1 parent 222d992 commit 51fcf90
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/src/main/java/com/samourai/sentinel/util/AppUtil.java
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ public void onClick(DialogInterface dialog, int which) {
Toast.makeText(context, R.string.copied_to_clipboard, Toast.LENGTH_SHORT).show();
} else {
Intent email = new Intent(Intent.ACTION_SEND);
email.putExtra(Intent.EXTRA_SUBJECT, "Samourai Wallet backup");
email.putExtra(Intent.EXTRA_SUBJECT, "Sentinel backup");
email.putExtra(Intent.EXTRA_TEXT, encrypted);
email.setType("message/rfc822");
context.startActivity(Intent.createChooser(email, context.getText(R.string.choose_email_client)));
Expand Down

0 comments on commit 51fcf90

Please sign in to comment.