mirror of
https://github.com/9001/copyparty.git
synced 2025-08-18 01:22:13 -06:00
don't start 2t stuff if there's no backend avail
This commit is contained in:
parent
16d6e9be1f
commit
f8c11faada
|
@ -101,11 +101,12 @@ class Up2k(object):
|
||||||
thr.daemon = True
|
thr.daemon = True
|
||||||
thr.start()
|
thr.start()
|
||||||
|
|
||||||
thr = threading.Thread(target=self._tagger)
|
thr = threading.Thread(target=self._hasher)
|
||||||
thr.daemon = True
|
thr.daemon = True
|
||||||
thr.start()
|
thr.start()
|
||||||
|
|
||||||
thr = threading.Thread(target=self._hasher)
|
if self.mtag:
|
||||||
|
thr = threading.Thread(target=self._tagger)
|
||||||
thr.daemon = True
|
thr.daemon = True
|
||||||
thr.start()
|
thr.start()
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue