From 5ec6f2b415d7f2209abf094b4b7578c1d450db36 Mon Sep 17 00:00:00 2001 From: crp3844 Date: Wed, 7 Sep 2022 15:28:44 -0400 Subject: [PATCH] forgot one client to remove --- bitwardenBackup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bitwardenBackup.py b/bitwardenBackup.py index dc5eccc..08c9a6e 100644 --- a/bitwardenBackup.py +++ b/bitwardenBackup.py @@ -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