fix: set isText field instead of isAscii

This commit is contained in:
Erica Marigold 2025-01-09 16:19:46 +00:00
parent ecace02e7f
commit 0400a3b05c
Signed by: DevComp
GPG key ID: 429EF1C337871656

View file

@ -87,7 +87,7 @@ type ZipEntryInner = {
method: CompressionMethod, -- Method used to compress the file
crc: number, -- CRC32 checksum of uncompressed data
isDirectory: boolean, -- Whether the entry is a directory or not
isText: boolean, -- Whether the entry is plain ASCII text or binary
isText: boolean, -- Whether the entry is plain ASCII text or binary
attributes: number, -- File attributes
parent: ZipEntry?, -- The parent of the current entry, nil for root
children: { ZipEntry }, -- The children of the entry
@ -328,7 +328,7 @@ function ZipReader.parseCentralDirectory(self: ZipReader): ()
method = DECOMPRESSION_ROUTINES[compressionMethod].name :: CompressionMethod,
timestamp = timestamp,
attributes = externalAttrs,
isAscii = bit32.band(internalAttrs, 0x0001) ~= 0,
isText = bit32.band(internalAttrs, 0x0001) ~= 0,
})
)