mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
use v instead of rev in getProjectDocs
This commit is contained in:
parent
ca7d9dce85
commit
bd6b5b2c59
1 changed files with 1 additions and 1 deletions
|
@ -84,7 +84,7 @@ module.exports = ProjectManager =
|
|||
# otherwise get the doc lines from redis
|
||||
RedisManager.getDocLines doc_id, (error, lines) ->
|
||||
return cb(error) if error?
|
||||
docs.push {_id: doc_id, lines: lines, rev: version}
|
||||
docs.push {_id: doc_id, lines: lines, v: version}
|
||||
cb()
|
||||
async.series jobs, (error) ->
|
||||
return callback(error) if error?
|
||||
|
|
Loading…
Reference in a new issue