Skip to content

Commit 61808c9

Browse files
committed
fix: compilation errors
1 parent 6c195b4 commit 61808c9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
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

0 commit comments

Comments
 (0)