Merge pull request #12802 from overleaf/jdt-parse-all-blg
fetch all blg files to report errors GitOrigin-RevId: eea9b0809e6b2efcf5df20961e94197c583463ef
This commit is contained in:
committed by
Copybot
parent
15f4e2e5cc
commit
1f71e339fb
@@ -99,9 +99,14 @@ export const handleLogFiles = async (outputFiles, data, signal) => {
|
||||
}
|
||||
}
|
||||
|
||||
const blgFile = outputFiles.get('output.blg')
|
||||
const blgFiles = []
|
||||
|
||||
if (blgFile) {
|
||||
for (const [filename, file] of outputFiles) {
|
||||
if (filename.endsWith('.blg')) {
|
||||
blgFiles.push(file)
|
||||
}
|
||||
}
|
||||
for (const blgFile of blgFiles) {
|
||||
try {
|
||||
const response = await fetchFromCompileDomain(
|
||||
buildURL(blgFile, data.pdfDownloadDomain, data.enableHybridPdfDownload),
|
||||
|
||||
Reference in New Issue
Block a user