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()