comment out broken length check

This commit is contained in:
Brian Gough 2018-02-08 10:08:22 +00:00
parent cba4a391a9
commit 14ef9a2c49

View file

@ -648,9 +648,9 @@ module.exports = ProjectEntityHandler =
checkValidElementName: (folder, name, callback = (err) ->) -> checkValidElementName: (folder, name, callback = (err) ->) ->
# check if the path would be too long # # # check if the path would be too long
if not SafePath.isAllowedLength "#{folder}/#{name}" # # if not SafePath.isAllowedLength "#{folder}/#{name}"
return callback new Error.InvalidNameError("path too long") # # return callback new Error.InvalidNameError("path too long")
# check if the name is already taken by a doc, file or # check if the name is already taken by a doc, file or
# folder. If so, return an error "file already exists". # folder. If so, return an error "file already exists".
err = new Errors.InvalidNameError("file already exists") err = new Errors.InvalidNameError("file already exists")