File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
src/main/java/com/lagradost/nicehttp Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ publishing {
3131 maven(MavenPublication ) {
3232 groupId ' com.lagradost'
3333 artifactId ' nicehttp'
34- version ' 0.4.4 '
34+ version ' 0.4.5 '
3535
3636 afterEvaluate {
3737 from components. release
Original file line number Diff line number Diff line change @@ -126,7 +126,9 @@ open class Requests(
126126 .callTimeout(timeout, TimeUnit .SECONDS )
127127 if (timeout > 0 )
128128 client
129- .callTimeout(timeout, TimeUnit .SECONDS )
129+ .connectTimeout(timeout, TimeUnit .SECONDS )
130+ .writeTimeout(timeout, TimeUnit .SECONDS )
131+ .readTimeout(timeout, TimeUnit .SECONDS )
130132 if (! verify) client.ignoreAllSSLErrors()
131133
132134 if (interceptor != null ) client.addInterceptor(interceptor)
You can’t perform that action at this time.
0 commit comments