Merge branch 'Stremio:development' into development

This commit is contained in:
a snaek 2025-08-12 00:51:59 +02:00 committed by GitHub
commit 80f25b8d45
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -102,8 +102,8 @@ const usePlayer = (urlParams) => {
args: {
action: 'TimeChanged',
args: {
time: Math.round(time),
duration,
time: Math.max(0, Math.round(time)),
duration: Math.max(0, Math.round(duration)),
device,
}
}
@ -118,8 +118,8 @@ const usePlayer = (urlParams) => {
args: {
action: 'Seek',
args: {
time: Math.round(time),
duration,
time: Math.max(0, Math.round(time)),
duration: Math.max(0, Math.round(duration)),
device,
}
}