File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
src/Packages/Passport/Runtime/Scripts Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -280,7 +280,7 @@ private async UniTask LaunchAuthUrl()
280280 string url = response . result . Replace ( " " , "+" ) ;
281281#if UNITY_ANDROID && ! UNITY_EDITOR
282282 loginPKCEUrl = url ;
283- SendAuthEvent ( pkceLoginOnly ? PassportAuthEvent . LoginPKCELaunchingCustomTabs : PassportAuthEvent . ConnectImxPKCELaunchingCustomTabs ) ;
283+ SendAuthEvent ( _pkceLoginOnly ? PassportAuthEvent . LoginPKCELaunchingCustomTabs : PassportAuthEvent . ConnectImxPKCELaunchingCustomTabs ) ;
284284 LaunchAndroidUrl ( url ) ;
285285#else
286286 SendAuthEvent ( _pkceLoginOnly ? PassportAuthEvent . LoginPKCEOpeningWebView : PassportAuthEvent . ConnectImxPKCEOpeningWebView ) ;
@@ -734,12 +734,12 @@ private void LaunchAndroidUrl(string url)
734734#if ( UNITY_IPHONE && ! UNITY_EDITOR ) || ( UNITY_ANDROID && ! UNITY_EDITOR )
735735 public void ClearCache ( bool includeDiskFiles )
736736 {
737- communicationsManager . ClearCache ( includeDiskFiles ) ;
737+ _communicationsManager . ClearCache ( includeDiskFiles ) ;
738738 }
739739
740740 public void ClearStorage ( )
741741 {
742- communicationsManager . ClearStorage ( ) ;
742+ _communicationsManager . ClearStorage ( ) ;
743743 }
744744#endif
745745
Original file line number Diff line number Diff line change @@ -241,7 +241,7 @@ private async UniTask Initialise(
241241 BrowserCommunicationsManager communicationsManager = new BrowserCommunicationsManager ( _webBrowserClient ) ;
242242
243243#if UNITY_WEBGL
244- readySignalReceived = true ;
244+ _readySignalReceived = true ;
245245#else
246246 // Mark ready when browser is initialised and game bridge file is loaded
247247 communicationsManager . OnReady += ( ) => _readySignalReceived = true ;
You can’t perform that action at this time.
0 commit comments