MikeZeDev
MikeZeDev
 Crash caused by debugger instruction from CF script (??) while executing MediaPlugin.Initialize(): Promise ```ts public async Initialize(): Promise { const request = new Request(this.URI.href); return FetchWindowScript(request, ''); //
Its a consequence of the NWJS bug mentioned here https://github.com/manga-download/haruneko/issues/621. We reject the promise with 'Failed to open window (invalid content)!', then we run into NWJS code :  that...
I made a dummy app that is just doing this. ```js 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 :...
Tracked [Here](https://github.com/nwjs/nw.js/issues/8205)
Still crashing.
Tursntile window dont crash anymore. Its crashing when i try FetchMangas. 1) Select any website where test is nulled because of CloudFlare. Lets say, Casacomic 2) Open website window :...
Error occurs in `FetchWindowPreloadScript` , on `await win.Open(request, this.featureFlags.VerboseFetchWindow.Value, preload);` Even doing this ```ts const win = CreateRemoteBrowserWindow(); await win.Open(request, this.featureFlags.VerboseFetchWindow.Value, preload); ``` Make it crash. Perhaps there is something...
Shouldnt we release a new version with that nwjs?
Fixed. If you read this and got the crash make sure your Haruneko is updated, in case of doubt re-download it.
Pretty sure its planned in Haruneko, if not already done.