Skip to content

Commit 56073b6

Browse files
nattb8ImmutableJeffrey
authored andcommitted
fix: compilation errors
1 parent f2d5334 commit 56073b6

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/Packages/Passport/Runtime/Scripts/Private/PassportImpl.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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

src/Packages/Passport/Runtime/Scripts/Public/Passport.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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;

0 commit comments

Comments
 (0)