tauri/.changes/fix-ipc-fallback.md
Lucas Fernandes Nogueira b1d9ffa1ab
fix(core): IPC fallback hanging when sending responses, closes #10327 (#10582)
The IPC fallback system kicks in when the custom protocol implementation cannot be used (e.g. CORS issues).
The fallback uses the postMessage mechanism, which by default uses channels to send large responses. If the custom protocol implementation cannot be used, we should not use channels, but eval the response directly.
2024-08-13 07:38:49 -03:00

133 B

tauri
patch:bug

Fix IPC fallback (postMessage implementation when custom protocol fails) hanging when sending responses.