fixed stupid mistake
This commit is contained in:
parent
d41f86a27a
commit
ae79b7ee3a
1 changed files with 1 additions and 1 deletions
|
@ -242,7 +242,7 @@ class OnionrCommunicate:
|
||||||
if data == False or len(data) > 10000000:
|
if data == False or len(data) > 10000000:
|
||||||
continue
|
continue
|
||||||
try:
|
try:
|
||||||
base64.b64decode(data)
|
data = base64.b64decode(data)
|
||||||
except binascii.Error:
|
except binascii.Error:
|
||||||
data = b''
|
data = b''
|
||||||
hasher.update(data)
|
hasher.update(data)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue