Skip to content

Commit 7c48ba7

Browse files
committed
fix build
1 parent 5a8b9ba commit 7c48ba7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/lib/sources/httpSource.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ function s3listv2(bucket: string, prefix: string) {
2525

2626
const key = keyMatch[1]
2727
const lastModified = lastModifiedMatch[1]
28-
const size = sizeMatch ? parseInt(sizeMatch[1], 10) : undefined
28+
const size = sizeMatch ? parseInt(sizeMatch[1] ?? '', 10) : undefined
2929
const eTag = eTagMatch ? eTagMatch[1] : undefined
3030

3131
results.push({ key, lastModified, size, eTag })

0 commit comments

Comments
 (0)