This commit is contained in:
Kovid Goyal 2021-09-12 12:21:03 +05:30
parent 5c8bcf9379
commit 7c90812e51
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -433,8 +433,9 @@ class Send(Handler):
def start_transfer(self) -> None:
if self.manager.active_file is None:
self.manager.activate_next_ready_file()
self.transmit_started = True
self.transmit_next_chunk()
if self.manager.active_file is not None:
self.transmit_started = True
self.transmit_next_chunk()
def print_check_paths(self) -> None:
if self.check_paths_printed: