From 082360688589db4fdf61d6b50453fc1081fcd78b Mon Sep 17 00:00:00 2001 From: Natalie Bunduwongse Date: Thu, 16 Oct 2025 08:53:54 +1300 Subject: [PATCH] fix: compile error on unsupported platform --- .../Runtime/ThirdParty/Gree/Assets/Plugins/WebViewObject.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Packages/Passport/Runtime/ThirdParty/Gree/Assets/Plugins/WebViewObject.cs b/src/Packages/Passport/Runtime/ThirdParty/Gree/Assets/Plugins/WebViewObject.cs index e2e01d081..132f92108 100644 --- a/src/Packages/Passport/Runtime/ThirdParty/Gree/Assets/Plugins/WebViewObject.cs +++ b/src/Packages/Passport/Runtime/ThirdParty/Gree/Assets/Plugins/WebViewObject.cs @@ -261,7 +261,7 @@ public void Init( webView.Call("Init", ua); webView.Call("setCallback", new AndroidCallback((message) => handleMessage(message))); #else - Logger.Error("Webview is not supported on this platform."); + PassportLogger.Error("Webview is not supported on this platform."); #endif }