forked from LBRYCommunity/lbry-sdk
resume should put the stream into wait as done usually on get calls
This commit is contained in:
parent
bbdc96e762
commit
5c1ab42277
1 changed files with 1 additions and 1 deletions
|
@ -161,7 +161,7 @@ class StreamManager:
|
||||||
else:
|
else:
|
||||||
log.warning("no DHT node given, resuming downloads trusting that we can contact reflector")
|
log.warning("no DHT node given, resuming downloads trusting that we can contact reflector")
|
||||||
t = [
|
t = [
|
||||||
stream.start_download(self.node)
|
(stream.start_download(self.node), self.wait_for_stream_finished(stream))
|
||||||
for stream in self.streams if stream.status == ManagedStream.STATUS_RUNNING
|
for stream in self.streams if stream.status == ManagedStream.STATUS_RUNNING
|
||||||
]
|
]
|
||||||
if t:
|
if t:
|
||||||
|
|
Loading…
Reference in a new issue