Skip to content

Commit

Permalink
fix: requestTimeoutMillis
Browse files Browse the repository at this point in the history
  • Loading branch information
cssxsh committed Dec 2, 2021
1 parent a6e7549 commit b21498c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/kotlin/xyz/cssxsh/bilibili/BiliClient.kt
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ open class BiliClient(private val timeout: Long = 15_000L) : Closeable {
install(HttpTimeout) {
socketTimeoutMillis = timeout
connectTimeoutMillis = timeout
requestTimeoutMillis = timeout
requestTimeoutMillis = null
}
install(HttpCookies) {
storage = this@BiliClient.storage
Expand Down

0 comments on commit b21498c

Please sign in to comment.