Skip to content

Commit b971add

Browse files
committed
Do not consider a redirect a successful status code
1 parent 398dff3 commit b971add

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Sources/IndiePitcherSwift/IndiePitcherSwift.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import NIOFoundationCompat
77

88
extension HTTPClientResponse {
99
var isOk: Bool {
10-
status.code >= 200 && status.code < 400
10+
status.code >= 200 && status.code < 300
1111
}
1212
}
1313

0 commit comments

Comments
 (0)