Explorar o código

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

Lucas Fernandes Nogueira hai 1 ano
pai
achega
fedca73860

+ 5 - 0
.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.

+ 1 - 1
core/tauri/src/ipc/protocol.rs

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