Skip to content

Commit fddad0a

Browse files
authoredFeb 7, 2021
Merge pull request #229 from dergutehirte/master
Fixed broken unicode checks
2 parents 7261624 + eea8cd5 commit fddad0a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
 

‎lib/Open/directory.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ module.exports = function centralDirectory(source, options) {
205205
return records.pull(vars.fileNameLength).then(function(fileNameBuffer) {
206206
vars.pathBuffer = fileNameBuffer;
207207
vars.path = fileNameBuffer.toString('utf8');
208-
vars.isUnicode = vars.flags & 0x11;
208+
vars.isUnicode = (vars.flags & 0x800) != 0;
209209
return records.pull(vars.extraFieldLength);
210210
})
211211
.then(function(extraField) {

‎lib/parse.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ Parse.prototype._readFile = function () {
130130
entry.props.path = fileName;
131131
entry.props.pathBuffer = fileNameBuffer;
132132
entry.props.flags = {
133-
"isUnicode": vars.flags & 0x11
133+
"isUnicode": (vars.flags & 0x800) != 0
134134
};
135135
entry.type = (vars.uncompressedSize === 0 && /[\/\\]$/.test(fileName)) ? 'Directory' : 'File';
136136

0 commit comments

Comments
 (0)
Please sign in to comment.