Make article title extra subject when sharing original

This commit is contained in:
jivesh
2024-05-01 21:29:24 +08:00
parent d985e8d993
commit b8dd327395

View File

@ -161,7 +161,7 @@ class WebReaderViewModel @Inject constructor(
browserIntent.setType("text/plain")
browserIntent.putExtra(Intent.EXTRA_TEXT, it.item.pageURLString)
browserIntent.putExtra(Intent.EXTRA_SUBJECT, it.item.pageURLString)
browserIntent.putExtra(Intent.EXTRA_SUBJECT, it.item.title)
context.startActivity(browserIntent)
}
}