Merge branch 'release/1.0.6'

This commit is contained in:
Book Pauk
2022-10-17 23:32:59 +07:00
3 changed files with 4 additions and 4 deletions

4
package-lock.json generated
View File

@@ -1,12 +1,12 @@
{ {
"name": "inpx-web", "name": "inpx-web",
"version": "1.0.5", "version": "1.0.6",
"lockfileVersion": 2, "lockfileVersion": 2,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "inpx-web", "name": "inpx-web",
"version": "1.0.5", "version": "1.0.6",
"hasInstallScript": true, "hasInstallScript": true,
"license": "CC0-1.0", "license": "CC0-1.0",
"dependencies": { "dependencies": {

View File

@@ -1,6 +1,6 @@
{ {
"name": "inpx-web", "name": "inpx-web",
"version": "1.0.5", "version": "1.0.6",
"author": "Book Pauk <bookpauk@gmail.com>", "author": "Book Pauk <bookpauk@gmail.com>",
"license": "CC0-1.0", "license": "CC0-1.0",
"repository": "bookpauk/inpx-web", "repository": "bookpauk/inpx-web",

View File

@@ -14,7 +14,7 @@ class ZipReader {
if (this.zip) if (this.zip)
throw new Error('Zip file is already open'); throw new Error('Zip file is already open');
const zip = new StreamZip.async({file: zipFile}); const zip = new StreamZip.async({file: zipFile, skipEntryNameValidation: true});
if (zipEntries) if (zipEntries)
this.zipEntries = await zip.entries(); this.zipEntries = await zip.entries();