From 1f87098e57b043e0cc7cbc7313be14dfecfd3725 Mon Sep 17 00:00:00 2001 From: Benjamin Richner Date: Sat, 19 Oct 2019 23:43:33 +0200 Subject: [PATCH] Enable decryption with file reader by_name() --- src/read.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/read.rs b/src/read.rs index 061bda7c..f53900d9 100644 --- a/src/read.rs +++ b/src/read.rs @@ -317,7 +317,7 @@ impl ZipArchive Some(index) => *index, None => { return Err(ZipError::FileNotFound); }, }; - self.by_index(index) + self.by_index_internal(index, password) } /// Get a contained file by index, decrypt with given password