mirror of
https://iceshrimp.dev/crimekillz/trashposs
synced 2024-11-22 17:03:49 +01:00
Refactor
This commit is contained in:
parent
b14a395b50
commit
3e28c7eaa8
@ -266,11 +266,11 @@ export default (user: any, file: string | stream.Readable, ...args) => new Promi
|
|||||||
}
|
}
|
||||||
rej(new Error('un-compatible file.'));
|
rej(new Error('un-compatible file.'));
|
||||||
})
|
})
|
||||||
.then(([path, remove]): Promise<any> => new Promise((res, rej) => {
|
.then(([path, shouldCleanup]): Promise<any> => new Promise((res, rej) => {
|
||||||
addFile(user, path, ...args)
|
addFile(user, path, ...args)
|
||||||
.then(file => {
|
.then(file => {
|
||||||
res(file);
|
res(file);
|
||||||
if (remove) {
|
if (shouldCleanup) {
|
||||||
fs.unlink(path, (e) => {
|
fs.unlink(path, (e) => {
|
||||||
if (e) log(e.stack);
|
if (e) log(e.stack);
|
||||||
});
|
});
|
||||||
|
Loading…
Reference in New Issue
Block a user