Skip to content

Commit

Permalink
@uppy/tus: fix retry check for status code 400 (#5461)
Browse files Browse the repository at this point in the history
  • Loading branch information
Murderlon authored Sep 19, 2024
1 parent 2117f27 commit f320a74
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/@uppy/tus/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -355,7 +355,7 @@ export default class Tus<M extends Meta, B extends Body> extends BasePlugin<
}
} else if (
status != null &&
status > 400 &&
status >= 400 &&
status < 500 &&
status !== 409 &&
status !== 423
Expand Down

0 comments on commit f320a74

Please sign in to comment.