From 323d0a87ffea337f4ce0cd9dd694eaa03b1946f0 Mon Sep 17 00:00:00 2001 From: endrl <119058008+endrl@users.noreply.github.com> Date: Sun, 1 Oct 2023 16:58:16 +0200 Subject: [PATCH] fix(tauri): http jellyfin server address (#2050) --- tauri/tauri.conf.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tauri/tauri.conf.json b/tauri/tauri.conf.json index e10eda8d..81baff11 100644 --- a/tauri/tauri.conf.json +++ b/tauri/tauri.conf.json @@ -52,7 +52,8 @@ } ], "security": { - "csp": "default-src blob: data: filesystem: ws: wss: http: https: tauri: 'unsafe-eval' 'unsafe-inline' 'self' img-src: 'self'" + "csp": "default-src blob: data: filesystem: ws: wss: http: https: tauri: 'unsafe-eval' 'unsafe-inline' 'self' img-src: 'self'", + "dangerousUseHttpScheme": true } } }