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:
Jakob Ackermann 2020-07-03 12:23:46 +02:00 committed by GitHub
commit fbca4eb191

View file

@ -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) {