When a plaintext share contains EXTRA_TEXT and a distinct EXTRA_SUBJECT, use EXTRA_SUBJECT as the content warning for the shared status (#1712)
This commit is contained in:
parent
50730f7481
commit
dd8abad8ca
|
@ -207,15 +207,14 @@ class ComposeActivity : BaseActivity(),
|
|||
if (action != null && action == Intent.ACTION_SEND) {
|
||||
val subject = intent.getStringExtra(Intent.EXTRA_SUBJECT)
|
||||
val text = intent.getStringExtra(Intent.EXTRA_TEXT)
|
||||
val shareBody = if (subject != null && text != null) {
|
||||
if (subject != text && !text.contains(subject)) {
|
||||
String.format("%s\n%s", subject, text)
|
||||
} else {
|
||||
text
|
||||
}
|
||||
} else text ?: subject
|
||||
val shareBody = text ?: subject
|
||||
|
||||
if (shareBody != null) {
|
||||
if (!subject.isNullOrBlank() && subject !in shareBody) {
|
||||
composeContentWarningField.setText(subject)
|
||||
viewModel.showContentWarning.value = true
|
||||
}
|
||||
|
||||
val start = composeEditField.selectionStart.coerceAtLeast(0)
|
||||
val end = composeEditField.selectionEnd.coerceAtLeast(0)
|
||||
val left = min(start, end)
|
||||
|
|
Loading…
Reference in New Issue