From ae79b7ee3a6264441682c4bc782b47882bdd54cd Mon Sep 17 00:00:00 2001 From: Kevin Froman Date: Sun, 22 Apr 2018 21:13:55 -0500 Subject: [PATCH] fixed stupid mistake --- onionr/communicator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/onionr/communicator.py b/onionr/communicator.py index cba930ef..35d8bcfd 100755 --- a/onionr/communicator.py +++ b/onionr/communicator.py @@ -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)