1
0
mirror of https://github.com/videojs/video.js.git synced 2024-12-21 01:39:04 +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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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';
}); });