File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed
core/src/main/java/com/web3auth/core Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -506,7 +506,8 @@ class Web3Auth(web3AuthOptions: Web3AuthOptions, context: Context) {
506506 method : String ,
507507 requestParams : JsonArray ,
508508 path : String? = "wallet/request",
509- context : Context
509+ appState : String? = null,
510+ context : Context ,
510511 ): CompletableFuture <Void > {
511512 val signMsgCF: CompletableFuture <Void > = CompletableFuture ()
512513 val sessionId = sessionManager.getSessionId()
@@ -521,6 +522,10 @@ class Web3Auth(web3AuthOptions: Web3AuthOptions, context: Context) {
521522 " options" , initOptions
522523 )
523524
525+ appState?.let {
526+ paramMap.put(" appState" , it)
527+ }
528+
524529 val loginIdCf = getLoginId(paramMap, context)
525530
526531 loginIdCf.whenComplete { loginId, error ->
You can’t perform that action at this time.
0 commit comments