diff --git a/src/routes/Player/usePlayer.js b/src/routes/Player/usePlayer.js index 05036f220..1e04af2cd 100644 --- a/src/routes/Player/usePlayer.js +++ b/src/routes/Player/usePlayer.js @@ -102,7 +102,7 @@ const usePlayer = (urlParams) => { args: { action: 'TimeChanged', args: { - time: Math.round(time), + time: Math.max(0, Math.round(time)), duration, device, } @@ -118,7 +118,7 @@ const usePlayer = (urlParams) => { args: { action: 'Seek', args: { - time: Math.round(time), + time: Math.max(0, Math.round(time)), duration, device, }