We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d3743e5 commit 431fbb0Copy full SHA for 431fbb0
1 file changed
lib/archivers/zip/zip-archive-output-stream.js
@@ -251,7 +251,7 @@ ZipArchiveOutputStream.prototype._writeCentralFileHeader = function(ae) {
251
this.write(zipUtil.getLongBytes(constants.SIG_CFH));
252
253
// version made by
254
- this.write(zipUtil.getShortBytes((ae.getPlatform() << 8) | VERSION_MADEBY));
+ this.write(zipUtil.getShortBytes((ae.getPlatform() << 8) | constants.VERSION_MADEBY));
255
256
// version to extract and general bit flag
257
this.write(zipUtil.getShortBytes(ae.getVersionNeededToExtract()));
0 commit comments