mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
Merge pull request #3884 from jivesh/main
Android bugfix: Make article title the subject when sharing original
This commit is contained in:
commit
a403c862bf
1 changed files with 1 additions and 1 deletions
|
|
@ -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)
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue