mirror of
https://github.com/overleaf/overleaf.git
synced 2025-04-05 05:28:18 +00:00
result path not in final cb
This commit is contained in:
parent
4bba56ed28
commit
d41bf2e974
1 changed files with 2 additions and 2 deletions
|
@ -29,9 +29,9 @@ checkFileConvert = (callback)->
|
|||
async.waterfall [
|
||||
(cb)->
|
||||
fs.copy("./tiny.pdf", imgPath, cb)
|
||||
(cb)-> fileConverter.thumbnail "./tiny.pdf", cb
|
||||
(cb)-> fileConverter.thumbnail imgPath, cb
|
||||
(resultPath, cb)-> fs.unlink resultPath, cb
|
||||
(resultPath, cb)-> fs.unlink imgPath, cb
|
||||
(cb)-> fs.unlink imgPath, cb
|
||||
], callback
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue