Update downloader.js

This commit is contained in:
Anthony Stirling 2024-11-21 11:47:47 +00:00 committed by GitHub
parent 0f6d5e5a41
commit 68349c4426
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -156,7 +156,7 @@
// Capture analytics
const pageCount = file && file.type === 'application/pdf' ? await getPDFPageCount(file) : null;
if(analyticsEnabled) {
posthog.capture('file_processing', {
success: success,
file_type: file ? file.type || 'unknown' : 'unknown',
@ -167,6 +167,7 @@
});
}
}
}
function getFilenameFromContentDisposition(contentDisposition) {
let filename;