mirror of
https://github.com/overleaf/overleaf.git
synced 2025-04-05 18:01:01 +00:00
Merge pull request #19192 from overleaf/em-project-history-avoid-crash
Prevent project-history crashes when generating a diff GitOrigin-RevId: 513fb846f0884a68d4550783497ae436e1cba00f
This commit is contained in:
parent
d7863bec37
commit
67dbf743e1
1 changed files with 12 additions and 1 deletions
|
@ -37,7 +37,18 @@ export function getDiff(projectId, pathname, fromVersion, toVersion, callback) {
|
|||
if (binary) {
|
||||
diff = { binary: true }
|
||||
} else {
|
||||
diff = DiffGenerator.buildDiff(initialContent, updates)
|
||||
try {
|
||||
diff = DiffGenerator.buildDiff(initialContent, updates)
|
||||
} catch (err) {
|
||||
return callback(
|
||||
OError.tag(err, 'failed to build diff', {
|
||||
projectId,
|
||||
pathname,
|
||||
fromVersion,
|
||||
toVersion,
|
||||
})
|
||||
)
|
||||
}
|
||||
}
|
||||
callback(null, diff)
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue