We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0ff445c commit b713b31Copy full SHA for b713b31
src/Packages/Passport/Runtime/ThirdParty/Gree/Assets/Plugins/GreeBrowserClient.cs
@@ -36,7 +36,8 @@ public GreeBrowserClient()
36
#else
37
string filePath = Constants.SCHEME_FILE + Path.GetFullPath(Application.dataPath) + Constants.PASSPORT_DATA_DIRECTORY_NAME + Constants.PASSPORT_HTML_FILE_NAME;
38
#endif
39
- webViewObject.LoadURL(filePath);
+ string escapedPath = filePath.Replace(" ", "%20");
40
+ webViewObject.LoadURL(escapedPath);
41
}
42
43
private void InvokeOnPostMessageError(string id, string message)
0 commit comments