From f78a00b5aefa3e91ffb4aaa24cf0801f6f02ea77 Mon Sep 17 00:00:00 2001 From: Stewart Allen Date: Sun, 1 Mar 2026 22:34:49 -0500 Subject: [PATCH] allow secure exception when proxy present --- src/kiri/app/export.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/kiri/app/export.js b/src/kiri/app/export.js index 02b3c222..2d79237f 100644 --- a/src/kiri/app/export.js +++ b/src/kiri/app/export.js @@ -254,7 +254,7 @@ function exportGCodeDialog(gcode, sections, info, names) { api.show.alert("host missing protocol (http:// or https://)"); return; } - if (api.const.SECURE && !api.util.isSecure(host)) { + if (api.const.SECURE && !api.util.isSecure(host) && !api.feature.proxy) { api.show.alert("host must begin with 'https' on a secure site"); return; }