mirror of
https://github.com/onionshare/onionshare.git
synced 2024-12-27 00:09:50 -05:00
Ignore attribute error when optimistically trying to cancel compression (we may have no ZipWriter object yet)
This commit is contained in:
parent
2ffcdbb108
commit
4ffc0ddb82
@ -56,5 +56,8 @@ class CompressThread(QtCore.QThread):
|
||||
|
||||
# Let the Web and ZipWriter objects know that we're canceling compression early
|
||||
self.mode.web.cancel_compression = True
|
||||
if self.mode.web.zip_writer:
|
||||
try:
|
||||
self.mode.web.zip_writer.cancel_compression = True
|
||||
except AttributeError:
|
||||
# we never made it as far as creating a ZipWriter object
|
||||
pass
|
||||
|
Loading…
Reference in New Issue
Block a user