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.
2 parents cd2263f + b713b31 commit d349d15Copy full SHA for d349d15
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