mirror of
https://github.com/element-hq/element-android
synced 2024-11-23 18:05:36 +03:00
Fix share actions from outside the app (#7473)
This commit is contained in:
parent
e1393c2d63
commit
ce35472824
2 changed files with 2 additions and 1 deletions
1
changelog.d/7400.bugfix
Normal file
1
changelog.d/7400.bugfix
Normal file
|
@ -0,0 +1 @@
|
|||
Fix share actions using share dialog.
|
|
@ -231,7 +231,7 @@ class MessageComposerFragment : VectorBaseFragment<FragmentComposerBinding>(), A
|
|||
.onEach { onTypeSelected(it.attachmentType) }
|
||||
.launchIn(lifecycleScope)
|
||||
|
||||
if (savedInstanceState != null) {
|
||||
if (savedInstanceState == null) {
|
||||
handleShareData()
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue