fix thread crash

This commit is contained in:
Kevin Froman 2018-05-14 19:44:54 -05:00
parent f9b93fd491
commit 2e9af7a4a3
No known key found for this signature in database
GPG Key ID: 0D414D0FE405B63B
2 changed files with 6 additions and 3 deletions

View File

@ -492,8 +492,12 @@ class OnionrCommunicate:
for i in blockList:
if len(i.strip()) == 0:
continue
if self._utils.hasBlock(i):
continue
try:
if self._utils.hasBlock(i):
continue
except:
logger.warn('Invalid hash') # TODO: move below validate hash check below
pass
if i in self.ignoredHashes:
continue

View File

@ -446,7 +446,6 @@ class OnionrUtils:
else:
logger.warn('Failed to verify hash for %s' % block)
def progressBar(self, value = 0, endvalue = 100, width = None):
'''
Outputs a progress bar with a percentage. Write \n after use.