fix(core): IPC tracing field incompatibility (#9720)

This commit is contained in:
Lucas Fernandes Nogueira 2024-05-09 09:41:41 -03:00 committed by GitHub
parent e78bfa722e
commit fedca73860
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 6 additions and 1 deletions

View File

@ -0,0 +1,5 @@
---
"tauri": patch:bug
---
Fix IPC tracing format incompatible between the custom protocol and the postMessage implementations.

View File

@ -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();