mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
[ASpell] error handling of cache dump: fix an async fs function call
fs.unlink requires a callback as second parameter. Signed-off-by: Jakob Ackermann <das7pad@outlook.com>
This commit is contained in:
parent
ac6e70d064
commit
5cfd92cf85
1 changed files with 1 additions and 1 deletions
|
@ -39,7 +39,7 @@ const cacheDump = setInterval(function() {
|
|||
return fs.writeFile(cacheFsPathTmp, dump, function(err) {
|
||||
if (err != null) {
|
||||
logger.log(OError.tag(err, 'error writing cache file'))
|
||||
return fs.unlink(cacheFsPathTmp)
|
||||
fs.unlink(cacheFsPathTmp, () => {})
|
||||
} else {
|
||||
fs.rename(cacheFsPathTmp, cacheFsPath, err => {
|
||||
if (err) {
|
||||
|
|
Loading…
Reference in a new issue