Skip to content

Commit

Permalink
Fix video pausing in fullscreen mode
Browse files Browse the repository at this point in the history
  • Loading branch information
Skalakid committed Mar 25, 2024
1 parent e75f1c4 commit 75896d2
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/components/VideoPlayer/BaseVideoPlayer.js
Original file line number Diff line number Diff line change
Expand Up @@ -217,6 +217,9 @@ function BaseVideoPlayer({
<PressableWithoutFeedback
accessibilityRole="button"
onPress={() => {
if (isFullScreenRef.current) {
return;
}
togglePlayCurrentVideo();
}}
style={styles.flex1}
Expand Down

0 comments on commit 75896d2

Please sign in to comment.