mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-06-03 06:09:02 +02:00
Update FSPersistorManager.coffee
Using code 'ENOENT' for error checking instead of errno 34.
This commit is contained in:
@@ -60,7 +60,7 @@ module.exports =
|
||||
filteredName = filterName name
|
||||
fs.rmdir "#{location}/#{filteredName}", (err) ->
|
||||
logger.err err:err, location:location, name:filteredName, "Error on rmdir."
|
||||
if err and err.errno != 34
|
||||
if err and err.code != 'ENOENT'
|
||||
callback err
|
||||
else
|
||||
callback()
|
||||
|
||||
Reference in New Issue
Block a user