From 41e922544ca94f5f0b8753d2cd35988a37aaef06 Mon Sep 17 00:00:00 2001 From: Its-treason <39559178+Its-treason@users.noreply.github.com> Date: Thu, 30 Nov 2023 19:36:15 +0100 Subject: [PATCH] Fix: Update CSP to allow posthog --- packages/bruno-electron/src/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/bruno-electron/src/index.js b/packages/bruno-electron/src/index.js index a65dc28c6..4cc482a8b 100644 --- a/packages/bruno-electron/src/index.js +++ b/packages/bruno-electron/src/index.js @@ -18,7 +18,7 @@ const lastOpenedCollections = new LastOpenedCollections(); const contentSecurityPolicy = [ "default-src 'self'", "script-src * 'unsafe-inline' 'unsafe-eval'", - "connect-src 'self' api.github.com", + "connect-src 'self' api.github.com app.posthog.com", "font-src 'self' https:", "form-action 'none'", "img-src 'self' blob: data: https:",