mirror of
https://github.com/overleaf/overleaf.git
synced 2025-04-04 22:47:35 +00:00
remove additional fields
This commit is contained in:
parent
0b9a0730c0
commit
ef47337c78
1 changed files with 1 additions and 1 deletions
|
@ -294,7 +294,7 @@ module.exports = PackManager =
|
|||
return callback() if not historyPacks?
|
||||
# select only the new packs not already in the index
|
||||
newPacks = (pack for pack in historyPacks when not indexResult?[pack._id]?)
|
||||
newPacks = (_.omit(pack, 'doc_id', 'project_id', 'n', 'sz') for pack in newPacks)
|
||||
newPacks = (_.omit(pack, 'doc_id', 'project_id', 'n', 'sz', 'last_checked', 'finalised') for pack in newPacks)
|
||||
if newPacks.length
|
||||
logger.log {project_id, doc_id, n: newPacks.length}, "found new packs"
|
||||
callback(null, newPacks)
|
||||
|
|
Loading…
Reference in a new issue