refactor: disable deep links on linux

This commit is contained in:
zhom
2025-11-26 00:21:33 +04:00
parent e02f588a90
commit 40886f2ded
+2 -2
View File
@@ -300,9 +300,9 @@ pub fn run() {
// Set up deep link handler
let handle = app.handle().clone();
#[cfg(any(windows, target_os = "linux"))]
#[cfg(windows)]
{
// For Windows and Linux, register all deep links at runtime for development
// For Windows, register all deep links at runtime
if let Err(e) = app.deep_link().register_all() {
eprintln!("Failed to register deep links: {e}");
}