mirror of
https://github.com/overleaf/overleaf.git
synced 2025-02-24 02:30:56 +00:00
Fetch updates before doc content when building a diff
This commit is contained in:
parent
05a048db9a
commit
cce93b95a5
1 changed files with 5 additions and 4 deletions
|
@ -5,11 +5,12 @@ logger = require "logger-sharelatex"
|
|||
|
||||
module.exports = DiffManager =
|
||||
getLatestDocAndUpdates: (project_id, doc_id, fromVersion, toVersion, callback = (error, content, version, updates) ->) ->
|
||||
# retrieve the document before retreiving the updates,
|
||||
# because updates are written to mongo after the document
|
||||
DocumentUpdaterManager.getDocument project_id, doc_id, (error, content, version) ->
|
||||
# Whichever order these are in, there is potential for updates to come in between
|
||||
# them so that they do not return the same 'latest' versions.
|
||||
# TODO: If these don't return consistent content, try again.
|
||||
UpdatesManager.getDocUpdatesWithUserInfo project_id, doc_id, from: fromVersion, to: toVersion, (error, updates) ->
|
||||
return callback(error) if error?
|
||||
UpdatesManager.getDocUpdatesWithUserInfo project_id, doc_id, from: fromVersion, to: toVersion, (error, updates) ->
|
||||
DocumentUpdaterManager.getDocument project_id, doc_id, (error, content, version) ->
|
||||
return callback(error) if error?
|
||||
callback(null, content, version, updates)
|
||||
|
||||
|
|
Loading…
Reference in a new issue