check timestamps array length

This commit is contained in:
Brian Gough 2019-09-27 10:39:56 +01:00
parent 0f0682df43
commit 7561e05660

View file

@ -28,7 +28,7 @@ module.exports = DeleteQueueManager =
flushProjectIfNotModified = (project_id, flushTimestamp, cb) ->
ProjectManager.getProjectDocsTimestamps project_id, (err, timestamps) ->
return callback(err) if err?
if !timestamps?
if timestamps.length == 0
logger.log {project_id}, "skipping flush of queued project - no timestamps"
return cb()
# are any of the timestamps newer than the time the project was flushed?