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(), ); }