mirror of
https://github.com/onionshare/onionshare.git
synced 2025-01-14 08:49:47 -05:00
waits for hs to be ready in GUI too (#116)
This commit is contained in:
parent
846b10b755
commit
6688ced698
@ -92,8 +92,14 @@ class OnionShareGui(QtGui.QWidget):
|
|||||||
|
|
||||||
# prepare the files for sending in a new thread
|
# prepare the files for sending in a new thread
|
||||||
def finish_starting_server(self):
|
def finish_starting_server(self):
|
||||||
|
# prepare files to share
|
||||||
web.set_file_info(self.file_selection.file_list.filenames)
|
web.set_file_info(self.file_selection.file_list.filenames)
|
||||||
self.app.cleanup_filenames.append(web.zip_filename)
|
self.app.cleanup_filenames.append(web.zip_filename)
|
||||||
|
|
||||||
|
# wait for hs
|
||||||
|
self.app.wait_for_hs()
|
||||||
|
|
||||||
|
# done
|
||||||
self.start_server_finished.emit()
|
self.start_server_finished.emit()
|
||||||
|
|
||||||
t = threading.Thread(target=finish_starting_server, kwargs={'self':self})
|
t = threading.Thread(target=finish_starting_server, kwargs={'self':self})
|
||||||
|
Loading…
Reference in New Issue
Block a user