mirror of
https://github.com/NodeBB/NodeBB.git
synced 2025-10-29 10:06:13 +01:00
fixed errors when uploading files
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user