From 8b2f2e1fbd66eb378bd7c6a032287cc7989f7481 Mon Sep 17 00:00:00 2001 From: Martmists Date: Fri, 26 Jul 2024 19:07:26 +0200 Subject: [PATCH] Add support for custom url protocol handlers --- wooting-macro-backend/src/plugin/system_event.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wooting-macro-backend/src/plugin/system_event.rs b/wooting-macro-backend/src/plugin/system_event.rs index 7129b51c..de1bfada 100644 --- a/wooting-macro-backend/src/plugin/system_event.rs +++ b/wooting-macro-backend/src/plugin/system_event.rs @@ -41,7 +41,7 @@ impl SystemAction { } DirectoryAction::Website { data } => { // The open_browser explicitly opens the path in a browser window. - opener::open_browser(data.as_str())?; + opener::open(data.as_str())?; } }, SystemAction::Volume { action } => match action {