mirror of
https://github.com/0x5eal/luau-unzip.git
synced 2025-04-10 17:20:53 +01:00
fix: set isText
field instead of isAscii
This commit is contained in:
parent
ecace02e7f
commit
0400a3b05c
1 changed files with 2 additions and 2 deletions
|
@ -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,
|
||||
})
|
||||
)
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue