Skip to content

Commit

Permalink
fix(js): fix onPlaybackStateChanged callback (#3753)
Browse files Browse the repository at this point in the history
  • Loading branch information
YangJonghun authored May 10, 2024
1 parent d25629b commit f87a793
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Video.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -549,7 +549,7 @@ const Video = forwardRef<VideoRef, ReactVideoProps>(
onVideoEnd={onEnd}
onVideoBuffer={onBuffer ? onVideoBuffer : undefined}
onVideoPlaybackStateChanged={
onPlaybackRateChange ? onVideoPlaybackStateChanged : undefined
onPlaybackStateChanged ? onVideoPlaybackStateChanged : undefined
}
onVideoBandwidthUpdate={
onBandwidthUpdate ? _onBandwidthUpdate : undefined
Expand Down

0 comments on commit f87a793

Please sign in to comment.