Skip to content

Commit 863bc9e

Browse files
authored
fix(core): regression on process-ipc-message-fn (#8749)
1 parent 8f0e50f commit 863bc9e

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
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 regression on the JavaScript code that processes the IPC message.

.prettierignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,5 @@ dist
1313
CHANGELOG.md
1414
*.wxs
1515
**/reference.md
16-
*schema.json
16+
*schema.json
17+
core/tauri/scripts/process-ipc-message-fn.js

core/tauri/scripts/process-ipc-message-fn.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
// this is a function and not an iife so use it carefully
66

7-
;(function (message) {
7+
(function (message) {
88
if (
99
message instanceof ArrayBuffer ||
1010
ArrayBuffer.isView(message) ||

0 commit comments

Comments
 (0)