From 4754786aa278a9e61f3973ce736f248b075e6bdc Mon Sep 17 00:00:00 2001 From: Fabian-Lars Date: Mon, 27 May 2024 20:59:00 +0200 Subject: [PATCH] fix(bundler/macos): Fix incorrect deep link plist property (#9885) --- .changes/fix-macos-deep-link-cfbundleurlname.md | 5 +++++ tooling/bundler/src/bundle/macos/app.rs | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 .changes/fix-macos-deep-link-cfbundleurlname.md diff --git a/.changes/fix-macos-deep-link-cfbundleurlname.md b/.changes/fix-macos-deep-link-cfbundleurlname.md new file mode 100644 index 000000000..86c32d891 --- /dev/null +++ b/.changes/fix-macos-deep-link-cfbundleurlname.md @@ -0,0 +1,5 @@ +--- +tauri-bundler: "patch:bug" +--- + +Fixed an issue causing the deep link feature to create invalid `Info.plist` values on macOS. diff --git a/tooling/bundler/src/bundle/macos/app.rs b/tooling/bundler/src/bundle/macos/app.rs index 9615d6f21..656986541 100644 --- a/tooling/bundler/src/bundle/macos/app.rs +++ b/tooling/bundler/src/bundle/macos/app.rs @@ -293,7 +293,7 @@ fn create_info_plist( ), ); dict.insert( - "CFBundleTypeName".into(), + "CFBundleURLName".into(), protocol .name .clone()