mirror of
https://github.com/9001/copyparty.git
synced 2025-08-17 09:02:15 -06:00
v1.14.1
This commit is contained in:
parent
8d8b88c4fd
commit
70009cd984
|
@ -1,8 +1,8 @@
|
|||
# coding: utf-8
|
||||
|
||||
VERSION = (1, 14, 0)
|
||||
VERSION = (1, 14, 1)
|
||||
CODENAME = "one step forward"
|
||||
BUILD_DT = (2024, 8, 18)
|
||||
BUILD_DT = (2024, 8, 19)
|
||||
|
||||
S_VERSION = ".".join(map(str, VERSION))
|
||||
S_BUILD_DT = "{0:04d}-{1:02d}-{2:02d}".format(*BUILD_DT)
|
||||
|
|
|
@ -460,7 +460,8 @@ class Up2k(object):
|
|||
# important; not deferred by db_act
|
||||
timeout = self._check_lifetimes()
|
||||
try:
|
||||
timeout = min(self._check_shares(), timeout)
|
||||
if self.args.shr:
|
||||
timeout = min(self._check_shares(), timeout)
|
||||
except Exception as ex:
|
||||
t = "could not check for expiring shares: %r"
|
||||
self.log(t % (ex,), 1)
|
||||
|
|
Loading…
Reference in a new issue