mirror of
https://github.com/overleaf/overleaf.git
synced 2025-01-31 22:32:00 +00:00
Merge pull request #37 from das7pad/hotfix-error-handling-cache-dump
[ASpell] error handling of cache dump: fix an async fs function call
This commit is contained in:
commit
fbca4eb191
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