Skip to content

Commit

Permalink
fix(core): IPC tracing field incompatibility (#9720)
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasfernog committed May 9, 2024
1 parent e78bfa7 commit fedca73
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changes/fix-incompatible-ipc-field-postmessage.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"tauri": patch:bug
---

Fix IPC tracing format incompatible between the custom protocol and the postMessage implementations.
2 changes: 1 addition & 1 deletion core/tauri/src/ipc/protocol.rs
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ fn handle_ipc_message<R: Runtime>(request: Request<String>, manager: &AppManager
"ipc::request",
kind = "post-message",
uri = request.uri().to_string(),
body = request.body()
request = request.body()
)
.entered();

Expand Down

0 comments on commit fedca73

Please sign in to comment.