Skip to content

Commit c0c0a1a

Browse files
committed
v1.15.3
1 parent 1d004b6 commit c0c0a1a

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

copyparty/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# coding: utf-8
22

3-
VERSION = (1, 15, 2)
3+
VERSION = (1, 15, 3)
44
CODENAME = "fill the drives"
55
BUILD_DT = (2024, 9, 16)
66

copyparty/httpcli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3986,7 +3986,7 @@ def tx_mounts(self) -> bool:
39863986
erd = quotep(rd)
39873987
rds = rd.replace("/", " / ")
39883988
spd = humansize(sz * fdone / td, True) + "/s"
3989-
eta = s2hms((td / fdone) - td, True)
3989+
eta = s2hms((td / fdone) - td, True) if rem < 1 else "--"
39903990
idle = s2hms(now - poke, True)
39913991
ups.append((int(100 * fdone), spd, eta, idle, erd, rds, fn))
39923992
except Exception as ex:

copyparty/up2k.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -288,7 +288,7 @@ def get_state(self, get_q: bool, uname: str) -> str:
288288
else:
289289
mtpq = "(?)"
290290
if up_en:
291-
ups = [(0, 0, time.time(), "cannot show list (server too busy)")]
291+
ups = [(1, 0, 0, time.time(), "cannot show list (server too busy)")]
292292

293293
ups.sort(reverse=True)
294294

0 commit comments

Comments
 (0)