mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-10 11:13:09 +02:00
[API] resolve deprecation error
error detail: DeprecationWarning: Calling an asynchronous function without callback is deprecated.
This commit is contained in:
parent
7bc788fc57
commit
c5a73ab2d4
1 changed files with 1 additions and 1 deletions
|
@ -23,7 +23,7 @@ module.exports = (file, params, user) =>
|
||||||
new Promise(async (res, rej) =>
|
new Promise(async (res, rej) =>
|
||||||
{
|
{
|
||||||
const buffer = fs.readFileSync(file.path);
|
const buffer = fs.readFileSync(file.path);
|
||||||
fs.unlink(file.path);
|
fs.unlink(file.path, (err) => { if (err) console.log(err) });
|
||||||
|
|
||||||
// Get 'name' parameter
|
// Get 'name' parameter
|
||||||
let name = file.originalname;
|
let name = file.originalname;
|
||||||
|
|
Loading…
Reference in a new issue