forgot one client to remove

This commit is contained in:
crp3844
2022-09-07 15:28:44 -04:00
parent 60e19cc718
commit 5ec6f2b415

View File

@@ -198,7 +198,7 @@ def decrypt(data):
array_json = base64.b64decode(data)
array = json.loads(array_json)
if array['version'] == 1:
return decrypt_v1(client, array)
return decrypt_v1(array)
else:
logger.error("Unable to detemine encryption version.")
return False