We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Wolvic version: Wolvic Chromium 1.1 Wolvic build ID: 183021044
Hardware: Quest 3
Get a blank page, no content, no error or warning
Expect a warning or error message, ideally allowing to accept and go through anyway
Follow what the Quest or Chrome or Firefox do, namely provide the option to accept temporarily the certificate after showing the problem
Developing content often means self-hosting on LAN urls, e.g. https://192.168.0.123:3000/index.html and providing HTTPS is required to get WebXR.
The text was updated successfully, but these errors were encountered:
I'm debugging this. One thing I noticed is that there's an onLoadError() that returns the result of error page:
onLoadError()
wolvic/app/src/common/shared/com/igalia/wolvic/browser/engine/Session.java
Lines 1240 to 1245 in 71ec70e
However, the returned result of this function is not used in the Chromium implementation:
wolvic/app/src/common/chromium/com/igalia/wolvic/browser/api/impl/TabWebContentsObserver.java
Line 119 in 71ec70e
Seems like it should be used somewhere to show the error page?
Sorry, something went wrong.
I'm debugging this. One thing I noticed is that there's an onLoadError() that returns the result of error page: wolvic/app/src/common/shared/com/igalia/wolvic/browser/engine/Session.java Lines 1240 to 1245 in 71ec70e @Override public WResult<String> onLoadError(@NonNull WSession session, @Nullable String uri, @NonNull WWebRequestError error) { Log.d(LOGTAG, "Session onLoadError: " + uri); return WResult.fromValue(InternalPages.createErrorPageDataURI(mContext, uri, error.code())); } However, the returned result of this function is not used in the Chromium implementation: wolvic/app/src/common/chromium/com/igalia/wolvic/browser/api/impl/TabWebContentsObserver.java Line 119 in 71ec70e navigationDelegate.onLoadError(mSession, failingUrl.getSpec(), new WWebRequestError() { Seems like it should be used somewhere to show the error page?
Yes, I think we could use the same error page as with gecko
No branches or pull requests
Configuration
Wolvic version: Wolvic Chromium 1.1
Wolvic build ID: 183021044
Hardware: Quest 3
Steps to Reproduce
Current Behavior
Get a blank page, no content, no error or warning
Expected Behavior
Expect a warning or error message, ideally allowing to accept and go through anyway
Possible Solution
Follow what the Quest or Chrome or Firefox do, namely provide the option to accept temporarily the certificate after showing the problem
Context
Developing content often means self-hosting on LAN urls, e.g. https://192.168.0.123:3000/index.html and providing HTTPS is required to get WebXR.
Error Logs and Stack Traces
The text was updated successfully, but these errors were encountered: