Fix issue for download files in subfolder

After delete this code line, I can download file from subfolder in linux.
This commit is contained in:
andrei0807 2019-06-24 09:23:56 +08:00 committed by GitHub
parent 609b63c474
commit 2402269250
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -56,7 +56,7 @@ function validateName(name, cb) {
return false;
}
var match = namePattern.exec(name);
if (match && match.index === 0 && match[0].length === name.length) {
if (match && match.index === 0) {
return true;
} else {
cb && process.nextTick(cb.bind(null,