fixed errors when uploading files

This commit is contained in:
Julian Lam
2016-02-10 15:23:53 -05:00
parent d2df63f9a5
commit 119930131d
2 changed files with 3 additions and 3 deletions

View File

@@ -46,7 +46,7 @@ uploadsController.upload = function(req, res, filesIterator, next) {
uploadsController.uploadPost = function(req, res, next) {
uploadsController.upload(req, res, function(uploadedFile, next) {
if (uploadedFile.type.match(/image./)) {
file.isFileTypeAllowed(uploadedFile.path, function(err) {
file.isFileTypeAllowed(uploadedFile.path, function(err, tempPath) {
if (err) {
return next(err);
}
@@ -66,7 +66,7 @@ uploadsController.uploadThumb = function(req, res, next) {
}
uploadsController.upload(req, res, function(uploadedFile, next) {
file.isFileTypeAllowed(uploadedFile.path, function(err) {
file.isFileTypeAllowed(uploadedFile.path, function(err, tempPath) {
if (err) {
return next(err);
}