aboutsummaryrefslogtreecommitdiff
path: root/core/src/main/scala/com/softwaremill/sttp/RequestT.scala
diff options
context:
space:
mode:
Diffstat (limited to 'core/src/main/scala/com/softwaremill/sttp/RequestT.scala')
-rw-r--r--core/src/main/scala/com/softwaremill/sttp/RequestT.scala5
1 files changed, 4 insertions, 1 deletions
diff --git a/core/src/main/scala/com/softwaremill/sttp/RequestT.scala b/core/src/main/scala/com/softwaremill/sttp/RequestT.scala
index 7b3eab9..082a75a 100644
--- a/core/src/main/scala/com/softwaremill/sttp/RequestT.scala
+++ b/core/src/main/scala/com/softwaremill/sttp/RequestT.scala
@@ -230,7 +230,10 @@ case class RequestT[U[_], T, +S](
this.copy(options = options.copy(followRedirects = fr))
def maxRedirects(n: Int): RequestT[U, T, S] =
- this.copy(options = options.copy(maxRedirects = n))
+ if (n <= 0)
+ this.copy(options = options.copy(followRedirects = false))
+ else
+ this.copy(options = options.copy(followRedirects = true, maxRedirects = n))
def tag(k: String, v: Any): RequestT[U, T, S] =
this.copy(tags = tags + (k -> v))