From def1b1e710a9bfe2346c6209110ff3c16564c567 Mon Sep 17 00:00:00 2001 From: Kendall Garner <17521368+kgarner7@users.noreply.github.com> Date: Sat, 30 May 2026 07:01:53 -0700 Subject: [PATCH] fix(butterchurn): allow unsafe wasm for butterchurn --- src/main/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/index.ts b/src/main/index.ts index 65921dc3e..4420f51b7 100644 --- a/src/main/index.ts +++ b/src/main/index.ts @@ -1039,7 +1039,7 @@ if (!singleInstance) { responseHeaders: { ...details.responseHeaders, 'Content-Security-Policy': [ - "script-src 'self' 'unsafe-inline' https://umami.jeffvli.org; style-src 'self' 'unsafe-inline'; media-src 'self' http: https: data: blob:; img-src 'self' http: https: data: blob:; connect-src 'self' http: https: ws: wss:; default-src 'self';", + "script-src 'self' 'wasm-unsafe-eval' 'unsafe-inline' https://umami.jeffvli.org; style-src 'self' 'unsafe-inline'; media-src 'self' http: https: data: blob:; img-src 'self' http: https: data: blob:; connect-src 'self' http: https: ws: wss:; default-src 'self';", ], }, });