Skip to content

Commit ed021e6

Browse files
committed
linter fixes
1 parent 1e6b547 commit ed021e6

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/resumable-upload.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1252,7 +1252,9 @@ export class Upload extends Writable {
12521252
}
12531253
this.numRetries++;
12541254
} else {
1255-
this.destroy(new Error(`Retry limit exceeded - ${JSON.stringify(resp.data)}`);
1255+
this.destroy(
1256+
new Error(`Retry limit exceeded - ${JSON.stringify(resp.data)}`)
1257+
);
12561258
}
12571259
}
12581260

0 commit comments

Comments
 (0)