From 6eb3246d3705d396b688f33587c60ed10d1d39c4 Mon Sep 17 00:00:00 2001 From: Shantur Rathore Date: Thu, 2 Apr 2026 17:18:23 +0100 Subject: [PATCH] update tauri self-signed guidance --- packages/tauri-app/src-tauri/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/tauri-app/src-tauri/src/main.rs b/packages/tauri-app/src-tauri/src/main.rs index 8a193817..b1390c46 100644 --- a/packages/tauri-app/src-tauri/src/main.rs +++ b/packages/tauri-app/src-tauri/src/main.rs @@ -165,7 +165,7 @@ fn intercept_navigation(webview: &Webview, url: &Url) -> bool { fn open_remote_window(app: AppHandle, payload: RemoteWindowPayload) -> Result<(), String> { if payload.skip_tls_verify && payload.base_url.starts_with("https://") { return Err( - "Tauri cannot bypass self-signed HTTPS certificates automatically yet. Trust the certificate in your OS first, then reconnect." + "Tauri cannot bypass self-signed HTTPS certificates automatically yet. Trust the certificate in your OS first, then reconnect, or use the CodeNomad Electron app." .to_string(), ); }