Enable decryption with file reader by_name()

This commit is contained in:
Benjamin Richner 2019-10-19 23:43:33 +02:00
parent f9f5029fc1
commit 1f87098e57

View file

@ -317,7 +317,7 @@ impl<R: Read+io::Seek> ZipArchive<R>
Some(index) => *index, Some(index) => *index,
None => { return Err(ZipError::FileNotFound); }, 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 /// Get a contained file by index, decrypt with given password