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

View File

@@ -38,7 +38,7 @@ module.exports = function(User) {
function(next) { function(next) {
file.isFileTypeAllowed(picture.path, next); file.isFileTypeAllowed(picture.path, next);
}, },
function(next) { function(path, next) {
image.resizeImage({ image.resizeImage({
path: picture.path, path: picture.path,
extension: extension, extension: extension,