From 4fc87a71be4ef02fe68fcf2b7e3700dff8649b33 Mon Sep 17 00:00:00 2001 From: Niko PLP Date: Sat, 19 Aug 2023 05:54:12 +0300 Subject: [PATCH] fix csp for ngaccount --- ngaccount/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ngaccount/src/main.rs b/ngaccount/src/main.rs index addfa06..1a682a7 100644 --- a/ngaccount/src/main.rs +++ b/ngaccount/src/main.rs @@ -259,7 +259,7 @@ async fn main() -> anyhow::Result<()> { headers.insert( "Content-Security-Policy", HeaderValue::from_static( - "default-src 'self' data:; connect-src ipc: https://ipc.localhost", + "default-src 'self' data:; connect-src ipc: https://ipc.localhost 'self'", ), );