-
Notifications
You must be signed in to change notification settings - Fork 32
New issue
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
CloudFlare enabled website now crashing Haruneko #750
Comments
Which NWjs versions are causing this issue |
|
Its a consequence of the NWJS bug mentioned here #621. We reject the promise with 'Failed to open window (invalid content)!', then we run into NWJS code : that "resumeparser" is crashing the whole app. https://github.com/search?q=repo%3Anwjs%2Fnw.js+block_parser&type=code |
I made a dummy app that is just doing this. async function OpenWindow() {
await nw.Window.open('https://hivetoon.com');
await new Promise((resolve) => { setTimeout(resolve, 5000);});
nw.App.closeAllWindows();
nw.App.quit();
}
OpenWindow();
//nwjs-sdk-v0.84.0-win-x64 : load properly
//nwjs-sdk-v0.85.0-win-x64 : dont load, dont crash
//nwjs-sdk-v0.86.0-win-x64 : dont load, dont crash
//nwjs-sdk-v0.87.0-win-x64 : dont load, dont crash
//nwjs-sdk-v0.88.0-win-x64 : dont load, dont crash
//nwjs-sdk-v0.89.0-win-x64 : dont load, dont crash
//nwjs-sdk-v0.90.0-win-x64 : dont load + crash |
Tracked Here |
Doesnt seems to crash when cookies has ben transmitted from Chrome.
I got that using NWJS.
The text was updated successfully, but these errors were encountered: