We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5f83fb9 commit ba081c2Copy full SHA for ba081c2
templates/kotlin/src/main/kotlin/io/appwrite/Client.kt.twig
@@ -158,8 +158,8 @@ class Client: CoroutineScope {
158
*
159
* @return this
160
*/
161
- fun setEndpoint(endPoint: String): Client {
162
- this.endPoint = endPoint
+ fun setEndpoint(endpoint: String): Client {
+ this.endpoint = endpoint
163
return this
164
}
165
@@ -199,7 +199,7 @@ class Client: CoroutineScope {
199
.addAll(headers.toHeaders())
200
.build()
201
202
- val httpBuilder = (endPoint + path).toHttpUrl().newBuilder()
+ val httpBuilder = (endpoint + path).toHttpUrl().newBuilder()
203
204
if ("GET" == method) {
205
filteredParams.forEach {
0 commit comments