We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9b3169a commit 6dd9784Copy full SHA for 6dd9784
2 files changed
build.gradle.kts
@@ -27,7 +27,7 @@ plugins {
27
}
28
29
group = "io.github.udhayarajan"
30
-version = "5.3.11"
+version = "5.3.12"
31
//Version Naming incremented if "<NEW_FEATURE_ADDED>.<WORKED_ON_BUG>.<BETA_VERSION_COUNT>"
32
//Priority on incrementing Feature > BugFix > Beta
33
src/commonMain/kotlin/com/mugames/vidsnapkit/network/HttpRequest.kt
@@ -53,7 +53,7 @@ class HttpRequest(
53
54
55
private fun createClient(requiresRedirection: Boolean = true): HttpInterface {
56
- return HttpInterfaceImpl(clientGenerator().also { it.config { followRedirects = requiresRedirection } })
+ return HttpInterfaceImpl(clientGenerator().apply { config { followRedirects = requiresRedirection } })
57
58
59
/**
0 commit comments