Skip to content

Commit

Permalink
make redirect uri transient to exclude from gson parsing
Browse files Browse the repository at this point in the history
  • Loading branch information
chaitanyapotti committed Oct 31, 2023
1 parent 14c7c34 commit e41cd2b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/main/java/com/web3auth/core/types/LoginParams.kt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ data class LoginParams(
val loginProvider: Provider,
var dappShare: String? = null,
val extraLoginOptions: ExtraLoginOptions? = null,
var redirectUrl: Uri? = null,
@Transient var redirectUrl: Uri? = null,
val appState: String? = null,
val mfaLevel: MFALevel? = null,
val sessionTime: Int? = null,
Expand Down

0 comments on commit e41cd2b

Please sign in to comment.