mirror of
https://github.com/tauri-apps/tauri.git
synced 2024-11-24 12:14:05 +03:00
b1d9ffa1ab
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.
133 B
133 B
tauri |
---|
patch:bug |
Fix IPC fallback (postMessage implementation when custom protocol fails) hanging when sending responses.