Skip to content

Commit

Permalink
ErgoAuth longer timeout #112
Browse files Browse the repository at this point in the history
  • Loading branch information
MrStahlfelge committed Apr 20, 2022
1 parent 19c41d4 commit 8133fed
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ fun getErgoAuthRequest(ergoAuthUrl: String): ErgoAuthRequest {
val httpUrl = (if (isLocalOrIpAddress(ergoAuthUrl)) "http://" else "https://") +
ergoAuthUrl.substringAfter(uriSchemePrefix)

val jsonResponse = fetchHttpGetStringSync(httpUrl)
val jsonResponse = fetchHttpGetStringSync(httpUrl, 30)
return parseErgoAuthRequestFromJson(jsonResponse)
}

Expand Down

0 comments on commit 8133fed

Please sign in to comment.