mirror of
https://github.com/9001/copyparty.git
synced 2025-08-17 09:02:15 -06:00
v0.13.9
This commit is contained in:
parent
161d57bdda
commit
f5712d9f25
|
@ -1,6 +1,6 @@
|
|||
# coding: utf-8
|
||||
|
||||
VERSION = (0, 13, 8)
|
||||
VERSION = (0, 13, 9)
|
||||
CODENAME = "future-proof"
|
||||
BUILD_DT = (2021, 8, 29)
|
||||
|
||||
|
|
|
@ -704,7 +704,7 @@ var pbar = (function () {
|
|||
|
||||
pctx.clearRect(0, 0, pc.w, pc.h);
|
||||
|
||||
if (!mp.au || mp.loading || isNaN(adur = mp.au.duration) || isNaN(apos = mp.au.currentTime))
|
||||
if (!mp.au || mp.loading || isNaN(adur = mp.au.duration) || isNaN(apos = mp.au.currentTime) || apos < 0 || adur < apos)
|
||||
return; // not-init || unsupp-codec
|
||||
|
||||
var sm = bc.w * 1.0 / adur;
|
||||
|
|
Loading…
Reference in a new issue