don't try to getLastCompressedUpdates from packs

This commit is contained in:
Brian Gough 2015-02-09 16:53:05 +00:00
parent f50f091fc6
commit d8dc56b031

View file

@ -11,6 +11,7 @@ module.exports = MongoManager =
.limit(1)
.toArray (error, compressedUpdates) ->
return callback(error) if error?
return callback null, null if compressedUpdates[0]?.pack? # cannot pop from a pack
return callback null, compressedUpdates[0] or null
# only used in this module