Skip to content

Commit

Permalink
fix email body. Closes #840
Browse files Browse the repository at this point in the history
  • Loading branch information
F43nd1r committed Apr 13, 2021
1 parent b90d958 commit 65b7ab8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ class EmailIntentSender(private val config: CoreConfiguration) : ReportSender {
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK)
intent.putExtra(Intent.EXTRA_SUBJECT, subject)
intent.putParcelableArrayListExtra(Intent.EXTRA_STREAM, attachments)
intent.putExtra(Intent.EXTRA_TEXT, arrayListOf(body))
intent.putExtra(Intent.EXTRA_TEXT, body)
return intent
}

Expand Down

0 comments on commit 65b7ab8

Please sign in to comment.