chore: add deep_link register_all

This commit is contained in:
Louis 2025-08-05 22:32:27 +07:00
parent 065a850a94
commit 3b349a60f1

View File

@ -129,6 +129,12 @@ pub fn run() {
if let Err(e) = setup::install_extensions(app.handle().clone(), false) { if let Err(e) = setup::install_extensions(app.handle().clone(), false) {
log::error!("Failed to install extensions: {}", e); log::error!("Failed to install extensions: {}", e);
} }
#[cfg(any(windows, target_os = "linux"))]
{
use tauri_plugin_deep_link::DeepLinkExt;
app.deep_link().register_all()?;
}
setup_mcp(app); setup_mcp(app);
Ok(()) Ok(())
}) })