[API] resolve deprecation error

error detail:
	DeprecationWarning: Calling an asynchronous function without callback is deprecated.
This commit is contained in:
otofune 2017-01-24 21:50:59 +09:00
parent 7bc788fc57
commit c5a73ab2d4
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ module.exports = (file, params, user) =>
new Promise(async (res, rej) =>
{
const buffer = fs.readFileSync(file.path);
fs.unlink(file.path);
fs.unlink(file.path, (err) => { if (err) console.log(err) });
// Get 'name' parameter
let name = file.originalname;