From 43335d4fe08e87c9cb9c9a83229ab5eca7cae09a Mon Sep 17 00:00:00 2001 From: Tony Giorgio Date: Wed, 25 Feb 2026 22:16:17 -0600 Subject: [PATCH] Restore custom URL scheme in mobile deep-link config The cloud.opensecret.maple custom scheme entry was accidentally removed from the mobile config in 9e6a5a2 when fixing Android pathPrefix. This tells the deep-link plugin to preserve CFBundleURLTypes in Info.plist for iOS, complementing the build.rs workaround. Co-authored-by: factory-droid[bot] <138933559+factory-droid[bot]@users.noreply.github.com> --- frontend/src-tauri/tauri.conf.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/frontend/src-tauri/tauri.conf.json b/frontend/src-tauri/tauri.conf.json index ca9b20d3..678b8ead 100644 --- a/frontend/src-tauri/tauri.conf.json +++ b/frontend/src-tauri/tauri.conf.json @@ -23,6 +23,10 @@ "schemes": ["cloud.opensecret.maple"] }, "mobile": [ + { + "scheme": ["cloud.opensecret.maple"], + "appLink": false + }, { "scheme": ["https"], "host": "trymaple.ai",