mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
added missing originalFsPath
This commit is contained in:
parent
b38e7d3078
commit
b166c86197
1 changed files with 2 additions and 0 deletions
|
@ -47,10 +47,12 @@ module.exports =
|
||||||
|
|
||||||
_getConvertedFileAndCache: (bucket, key, convertedKey, opts, callback)->
|
_getConvertedFileAndCache: (bucket, key, convertedKey, opts, callback)->
|
||||||
convertedFsPath = ""
|
convertedFsPath = ""
|
||||||
|
originalFsPath = ""
|
||||||
async.series [
|
async.series [
|
||||||
(cb) =>
|
(cb) =>
|
||||||
@_convertFile bucket, key, opts, (err, fileSystemPath, originalFsPath) ->
|
@_convertFile bucket, key, opts, (err, fileSystemPath, originalFsPath) ->
|
||||||
convertedFsPath = fileSystemPath
|
convertedFsPath = fileSystemPath
|
||||||
|
originalFsPath = originalFsPath
|
||||||
cb err
|
cb err
|
||||||
(cb)->
|
(cb)->
|
||||||
ImageOptimiser.compressPng convertedFsPath, cb
|
ImageOptimiser.compressPng convertedFsPath, cb
|
||||||
|
|
Loading…
Reference in a new issue