File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Assets/Plugins/Web3AuthSDK Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -62,14 +62,14 @@ public void Awake()
6262 this . initParams = new Dictionary < string , object > ( ) ;
6363
6464 this . initParams [ "clientId" ] = clientId ;
65- this . initParams [ "network" ] = network . ToString ( ) . ToLower ( ) ;
65+ this . initParams [ "network" ] = network . ToString ( ) . ToLowerInvariant ( ) ;
6666
6767 if ( ! string . IsNullOrEmpty ( redirectUri ) )
6868 this . initParams [ "redirectUrl" ] = redirectUri ;
6969
7070 Application . deepLinkActivated += onDeepLinkActivated ;
7171 if ( ! string . IsNullOrEmpty ( Application . absoluteURL ) )
72- onDeepLinkActivated ( Application . absoluteURL ) ;
72+ onDeepLinkActivated ( Application . absoluteURL ) ; C
7373
7474#if UNITY_EDITOR
7575 Web3AuthSDK . Editor . Web3AuthDebug . onURLRecieved += ( Uri url ) =>
@@ -112,9 +112,9 @@ public void setOptions(Web3AuthOptions web3AuthOptions)
112112 this . initParams [ "clientId" ] = this . web3AuthOptions . clientId ;
113113
114114 if ( this . web3AuthOptions . buildEnv != null )
115- this . initParams [ "buildEnv" ] = this . web3AuthOptions . buildEnv . ToString ( ) . ToLower ( ) ;
115+ this . initParams [ "buildEnv" ] = this . web3AuthOptions . buildEnv . ToString ( ) . ToLowerInvariant ( ) ;
116116
117- this . initParams [ "network" ] = this . web3AuthOptions . network . ToString ( ) . ToLower ( ) ;
117+ this . initParams [ "network" ] = this . web3AuthOptions . network . ToString ( ) . ToLowerInvariant ( ) ;
118118
119119 if ( this . web3AuthOptions . useCoreKitKey . HasValue )
120120 this . initParams [ "useCoreKitKey" ] = this . web3AuthOptions . useCoreKitKey . Value ;
You can’t perform that action at this time.
0 commit comments