mirror of
https://github.com/element-hq/element-android
synced 2024-11-27 11:59:12 +03:00
Regression: Video will not play upon tap
This commit is contained in:
parent
b3ccd788f6
commit
a52d20eeff
2 changed files with 2 additions and 2 deletions
|
@ -11,6 +11,7 @@ Improvements 🙌:
|
|||
Bugfix 🐛:
|
||||
- Add option to cancel stuck messages at bottom of timeline see #516
|
||||
- Ensure message are decrypted in the room list after a clear cache
|
||||
- Regression: Video will not play upon tap, but only after swipe #2928
|
||||
|
||||
Translations 🗣:
|
||||
-
|
||||
|
|
|
@ -29,7 +29,6 @@ import androidx.core.view.ViewCompat
|
|||
import androidx.core.view.isInvisible
|
||||
import androidx.core.view.isVisible
|
||||
import androidx.lifecycle.Lifecycle
|
||||
import androidx.lifecycle.lifecycleScope
|
||||
import androidx.transition.Transition
|
||||
import im.vector.app.R
|
||||
import im.vector.app.core.di.ActiveSessionHolder
|
||||
|
@ -132,7 +131,7 @@ class VectorAttachmentViewerActivity : AttachmentViewerActivity(), BaseAttachmen
|
|||
if (savedInstanceState == null) {
|
||||
pager2.setCurrentItem(initialIndex, false)
|
||||
// The page change listener is not notified of the change...
|
||||
lifecycleScope.launchWhenResumed {
|
||||
pager2.post {
|
||||
onSelectedPositionChanged(initialIndex)
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue