Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/multipart/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@

try {
await partHandler.reportProgress(line, lineLength)
} catch (err) {
} catch (error) {

Check failure on line 211 in src/multipart/main.ts

View workflow job for this annotation

GitHub Actions / test / test_linux (latest)

'error' is already declared in the upper scope on line 202 column 15

Check failure on line 211 in src/multipart/main.ts

View workflow job for this annotation

GitHub Actions / lint / lint (latest)

'error' is already declared in the upper scope on line 202 column 15

Check failure on line 211 in src/multipart/main.ts

View workflow job for this annotation

GitHub Actions / test / test_windows (latest)

'error' is already declared in the upper scope on line 202 column 15
part.emit('error', error)
this.abort(error)
}
Expand Down
Loading