fixed stupid mistake

This commit is contained in:
Kevin Froman 2018-04-22 21:13:55 -05:00
parent d41f86a27a
commit ae79b7ee3a
No known key found for this signature in database
GPG Key ID: 0D414D0FE405B63B
1 changed files with 1 additions and 1 deletions

View File

@ -242,7 +242,7 @@ class OnionrCommunicate:
if data == False or len(data) > 10000000:
continue
try:
base64.b64decode(data)
data = base64.b64decode(data)
except binascii.Error:
data = b''
hasher.update(data)