stffabi

Results 102 comments of stffabi

Thanks for creating this followup issue 🙏. Could you please also post your system details, so we know which version of MacOS you are running? I've just taken a brief...

Thanks, at the moment I'm unable to reproduce it. In the meantime, what are you seeing in the network tab when the page load didn't work? Do you see all...

Can you try to reproduce it with reloads when the dev tools are open? Then take a look if you see any errors in the console tab and take a...

If the network tab doesn't show the request I suspect that either somewhere the link to the images don't get in or WkWebView doesn't initiate the request.

@cxt90730 awesome thanks for this information. The hanging request is causing your problem, and I think I know what's going on... I'm going to create a PR which should fix...

Sorry didn't have enough time to write down the details earlier. In the callback from the native WKWebView a task object needs to be hold, then there's a callback into...

> I personally feel, according to your description, it needs to make the callback name have uniqueness in the dictionary or add lock or mutex on the key in the...

I have used [panicwrap](https://github.com/mitchellh/panicwrap) in combination with Wails in one project. There are panics which one might not recover from, e.g. if the panic happens in some go routine that...

Would it be possible for you to also post the stacktrace of the panic? You need to compile the binary with 'wails build --debug' to get the stacktrace shown in...

I wonder if it is related to the wrong handling of unsafe.Pointer to uint64 of the webview2loader when loading from the embedded version, e.g here https://github.com/wailsapp/wails/blob/743d7cc4dd0ad789946f3ebf0a667744c3a40423/v2/internal/frontend/desktop/windows/go-webview2/webviewloader/module.go#L76 Normally native calls use...