mirror of
https://github.com/9001/copyparty.git
synced 2025-08-17 17:12:13 -06:00
v1.15.3
This commit is contained in:
parent
1d004b6dbd
commit
c0c0a1a83a
|
@ -1,6 +1,6 @@
|
|||
# coding: utf-8
|
||||
|
||||
VERSION = (1, 15, 2)
|
||||
VERSION = (1, 15, 3)
|
||||
CODENAME = "fill the drives"
|
||||
BUILD_DT = (2024, 9, 16)
|
||||
|
||||
|
|
|
@ -3986,7 +3986,7 @@ class HttpCli(object):
|
|||
erd = quotep(rd)
|
||||
rds = rd.replace("/", " / ")
|
||||
spd = humansize(sz * fdone / td, True) + "/s"
|
||||
eta = s2hms((td / fdone) - td, True)
|
||||
eta = s2hms((td / fdone) - td, True) if rem < 1 else "--"
|
||||
idle = s2hms(now - poke, True)
|
||||
ups.append((int(100 * fdone), spd, eta, idle, erd, rds, fn))
|
||||
except Exception as ex:
|
||||
|
|
|
@ -288,7 +288,7 @@ class Up2k(object):
|
|||
else:
|
||||
mtpq = "(?)"
|
||||
if up_en:
|
||||
ups = [(0, 0, time.time(), "cannot show list (server too busy)")]
|
||||
ups = [(1, 0, 0, time.time(), "cannot show list (server too busy)")]
|
||||
|
||||
ups.sort(reverse=True)
|
||||
|
||||
|
|
Loading…
Reference in a new issue