diff --git a/.changes/fix-incompatible-ipc-field-postmessage.md b/.changes/fix-incompatible-ipc-field-postmessage.md new file mode 100644 index 000000000..3aa5f1599 --- /dev/null +++ b/.changes/fix-incompatible-ipc-field-postmessage.md @@ -0,0 +1,5 @@ +--- +"tauri": patch:bug +--- + +Fix IPC tracing format incompatible between the custom protocol and the postMessage implementations. diff --git a/core/tauri/src/ipc/protocol.rs b/core/tauri/src/ipc/protocol.rs index fe5031acb..17ca5ca4c 100644 --- a/core/tauri/src/ipc/protocol.rs +++ b/core/tauri/src/ipc/protocol.rs @@ -167,7 +167,7 @@ fn handle_ipc_message(request: Request, manager: &AppManager "ipc::request", kind = "post-message", uri = request.uri().to_string(), - body = request.body() + request = request.body() ) .entered();