1
0
mirror of https://github.com/videojs/video.js.git synced 2025-07-03 00:57:02 +02:00

Apply suggestions from code review

Co-authored-by: André <34163393+amtins@users.noreply.github.com>
This commit is contained in:
mister-ben
2023-12-11 11:22:54 +00:00
committed by GitHub
parent e6c541c8e6
commit b249c6715a

View File

@ -122,7 +122,7 @@ export const initMediaSession = function() {
ms.playbackState = 'playing'; ms.playbackState = 'playing';
}); });
this.on('paused', () => { this.on('pause', () => {
ms.playbackState = 'paused'; ms.playbackState = 'paused';
}); });