1
0
Fork 0
mirror of https://github.com/sussy-code/smov.git synced 2024-12-20 14:37:43 +01:00

fix: add check for setPositionState to avoid TypeError

This commit is contained in:
qtchaos 2024-03-15 17:30:37 +02:00
parent 6f3c700dcb
commit e0fec7ffa3
No known key found for this signature in database
GPG key ID: 7DA98B2B9EF06A90

View file

@ -32,6 +32,9 @@ export function MediaSession() {
const updatePositionState = useCallback( const updatePositionState = useCallback(
(position: number) => { (position: number) => {
// If the browser doesn't support setPositionState, return
if (typeof navigator.mediaSession.setPositionState !== "function") return;
// If the updated position needs to be buffered, queue an update // If the updated position needs to be buffered, queue an update
if (position > data.progress.buffered) { if (position > data.progress.buffered) {
shouldUpdatePositionState.current = true; shouldUpdatePositionState.current = true;