Arreglar petición de archivo

This commit is contained in:
Miguel González Aravena 2017-08-15 05:33:24 -03:00
parent c0b546aa95
commit 6b1f9ffc8d
1 changed files with 0 additions and 1 deletions

View File

@ -283,7 +283,6 @@ FileSystemProvider.prototype.getFiles = function(container, options, cb) {
FileSystemProvider.prototype.getFile = function(container, file, cb) {
var self = this;
if (!validateName(container, cb)) return;
if (!validateName(file, cb)) return;
var filePath = path.join(this.root, container, file);
fs.stat(filePath, function(err, stat) {