From 401fc98b4dc770499185cdee110681af1173453d Mon Sep 17 00:00:00 2001 From: Ankit Tiwari Date: Sat, 16 Oct 2021 00:15:32 +0530 Subject: [PATCH] Passing password to ZipInputStream constructor in importData method of CatimaImporter.java --- .../java/protect/card_locker/importexport/CatimaImporter.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/main/java/protect/card_locker/importexport/CatimaImporter.java b/app/src/main/java/protect/card_locker/importexport/CatimaImporter.java index ce1273373..0c42f5210 100644 --- a/app/src/main/java/protect/card_locker/importexport/CatimaImporter.java +++ b/app/src/main/java/protect/card_locker/importexport/CatimaImporter.java @@ -48,7 +48,7 @@ public class CatimaImporter implements Importer bufferedInputStream.mark(100); // First, check if this is a zip file - ZipInputStream zipInputStream = new ZipInputStream(bufferedInputStream); + ZipInputStream zipInputStream = new ZipInputStream(bufferedInputStream,password); boolean isZipFile = false;