mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-29 12:01:32 +02:00
Ignore bib parse errors (#5874)
GitOrigin-RevId: 05c214762585b4d3d35ed055e1764d472b9cc861
This commit is contained in:
@@ -104,9 +104,12 @@ export const handleOutputFiles = async (projectId, data) => {
|
||||
|
||||
const log = await response.text()
|
||||
|
||||
const { errors, warnings } = new BibLogParser(log, {}).parse()
|
||||
|
||||
accumulateResults({ errors, warnings }, 'BibTeX:')
|
||||
try {
|
||||
const { errors, warnings } = new BibLogParser(log, {}).parse()
|
||||
accumulateResults({ errors, warnings }, 'BibTeX:')
|
||||
} catch (e) {
|
||||
// BibLog parsing errors are ignored
|
||||
}
|
||||
}
|
||||
|
||||
result.fileList = buildFileList(outputFiles, data.clsiServerId)
|
||||
|
||||
Reference in New Issue
Block a user