Skip to content

Commit

Permalink
Merge pull request #104 from Web3Auth/bugFix/request_method
Browse files Browse the repository at this point in the history
bugFix: session in request() function
  • Loading branch information
chaitanyapotti authored Dec 10, 2024
2 parents 76ca316 + 9d646b0 commit 241bdec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/main/java/com/web3auth/core/Web3Auth.kt
Original file line number Diff line number Diff line change
Expand Up @@ -524,7 +524,7 @@ class Web3Auth(web3AuthOptions: Web3AuthOptions, context: Context) : WebViewResu
signMsgCF = CompletableFuture()
WebViewActivity.webViewResultCallback = this

val sessionId = sessionManager.getSessionId()
val sessionId = SessionManager.getSessionIdFromStorage()
if (sessionId.isNotBlank()) {
val sdkUrl = Uri.parse(web3AuthOption.walletSdkUrl)
val initOptions = JSONObject(gson.toJson(getInitOptions()))
Expand Down

0 comments on commit 241bdec

Please sign in to comment.