🐛 Fix end of file reached error

This commit is contained in:
C-3PO 2018-07-05 18:41:24 +02:00
parent 5c915776aa
commit 68348b3673
Signed by: c3po
GPG key ID: 62993C4BB4D86F24
6 changed files with 42 additions and 5 deletions

View file

@ -24,7 +24,7 @@ interface ISsnFileEntry {
name: string;
/** Uncompressed size */
size: number;
/** Stored size (size of compressed data + 12 byte encryption header if applicable) */
/** Stored size (size of compressed data + 12 byte encryption header if applicable). Does not include the local ZIP file header, which is slightly longer than 30 bytes. */
compressedSize: number;
/** Decryption keys needed to decrypt the file */
decryptionKeys: [number, number, number] | undefined;