forked from LBRYCommunity/lbry-sdk
include sd blob hashes in list of blob hashes to send via reflector
This commit is contained in:
parent
191f661b35
commit
1dea20a358
1 changed files with 7 additions and 0 deletions
|
@ -92,6 +92,13 @@ class LBRYFileReflectorClient(Protocol):
|
|||
self.blob_hashes_to_send.append(blob_hash)
|
||||
|
||||
d.addCallback(set_blobs)
|
||||
|
||||
d.addCallback(lambda _: stream_info_manager.get_sd_blob_hashes_for_stream)
|
||||
|
||||
def set_sd_blobs(sd_blob_hashes):
|
||||
for sd_blob_hash, in sd_blob_hashes:
|
||||
self.blob_hashes_to_send.append(sd_blob_hash)
|
||||
d.addCallback(set_sd_blobs)
|
||||
return d
|
||||
|
||||
def parse_response(self, buff):
|
||||
|
|
Loading…
Reference in a new issue