MikeZeDev

Results 737 comments of MikeZeDev

![image](https://github.com/user-attachments/assets/51ca25a4-5a90-4b1b-b6de-3cf3f160413b) 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 : ![image](https://github.com/user-attachments/assets/fbdcc5d9-3285-4d3c-a8a3-8533f1fec23b) 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)

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.