From a143d951f8b4e4d63603caf43c0ec3fcdf26e6a5 Mon Sep 17 00:00:00 2001 From: Federico Terzi Date: Mon, 3 Jan 2022 21:38:06 +0100 Subject: [PATCH] fix(core): fix SecureInput troubleshoot link. Fix #892 --- .../src/cli/worker/engine/dispatch/executor/secure_input.rs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/espanso/src/cli/worker/engine/dispatch/executor/secure_input.rs b/espanso/src/cli/worker/engine/dispatch/executor/secure_input.rs index 40ae47c..4a1f911 100644 --- a/espanso/src/cli/worker/engine/dispatch/executor/secure_input.rs +++ b/espanso/src/cli/worker/engine/dispatch/executor/secure_input.rs @@ -33,9 +33,7 @@ impl SecureInputManagerAdapter { impl SecureInputManager for SecureInputManagerAdapter { fn display_secure_input_troubleshoot(&self) -> anyhow::Result<()> { - // TODO: replace with actual URL - // TODO: in the future, this might be a self-contained WebView window - opener::open_browser("https://espanso.org/docs")?; + opener::open_browser("https://espanso.org/docs/next/troubleshooting/secure-input/")?; Ok(()) }