Skip to content

Commit fedca73

Browse files
authored
fix(core): IPC tracing field incompatibility (#9720)
1 parent e78bfa7 commit fedca73

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"tauri": patch:bug
3+
---
4+
5+
Fix IPC tracing format incompatible between the custom protocol and the postMessage implementations.

core/tauri/src/ipc/protocol.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ fn handle_ipc_message<R: Runtime>(request: Request<String>, manager: &AppManager
167167
"ipc::request",
168168
kind = "post-message",
169169
uri = request.uri().to_string(),
170-
body = request.body()
170+
request = request.body()
171171
)
172172
.entered();
173173

0 commit comments

Comments
 (0)