We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5a8b9ba commit 7c48ba7Copy full SHA for 7c48ba7
1 file changed
src/lib/sources/httpSource.ts
@@ -25,7 +25,7 @@ function s3listv2(bucket: string, prefix: string) {
25
26
const key = keyMatch[1]
27
const lastModified = lastModifiedMatch[1]
28
- const size = sizeMatch ? parseInt(sizeMatch[1], 10) : undefined
+ const size = sizeMatch ? parseInt(sizeMatch[1] ?? '', 10) : undefined
29
const eTag = eTagMatch ? eTagMatch[1] : undefined
30
31
results.push({ key, lastModified, size, eTag })
0 commit comments