-
Notifications
You must be signed in to change notification settings - Fork 34
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 |
Seems to be fixed with NW |
Still crashing. |
when viewing chapter from likemanga it crashes too fetch list without issue |
Can you provide steps to reproduce? |
Tursntile window dont crash anymore. Its crashing when i try FetchMangas.
I made sure that i am using 0.95.0 sdk. |
Error occurs in Even doing this const win = CreateRemoteBrowserWindow();
await win.Open(request, this.featureFlags.VerboseFetchWindow.Value, preload); Make it crash. Perhaps there is something CF doesnt like with CreateRemoteBrowserWindow Since there is no crash when opening website window by clicking on the button, it must be on our end. |
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: