Skip to content

Commit

Permalink
Fix default endpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
abnegate committed Jun 18, 2024
1 parent ba081c2 commit 3df1fed
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ class Client(context: Context) : CoroutineScope {
internal const val COOKIE_PREFS = "myCookie"
}

private var _endpoint: String = ""
private var _endpoint: String = "{{spec.endpoint}}"
var endpoint: String
get() = _endpoint
private set(value) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ class Client: CoroutineScope {
const val CHUNK_SIZE = 5*1024*1024; // 5MB
}

private var _endpoint: String = ""
private var _endpoint: String = "{{spec.endpoint}}"
var endpoint: String
get() = _endpoint
private set(value) {
Expand Down

0 comments on commit 3df1fed

Please sign in to comment.