Fixed missing recursive progress callback allocation in segmented resource transfer

pull/76/head
Mark Qvist 2022-05-22 21:05:07 +02:00
rodzic e811d54d0f
commit d1cb07356c
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -567,7 +567,7 @@ class Resource:
else:
# Otherwise we'll recursively create the
# next segment of the resource
Resource(self.input_file, self.link, callback = self.callback, segment_index = self.segment_index+1, original_hash=self.original_hash)
Resource(self.input_file, self.link, callback = self.callback, segment_index = self.segment_index+1, original_hash=self.original_hash, progress_callback = self.__progress_callback)
else:
pass
else: