Skip to content

Commit

Permalink
fix(bundler/macos): Fix incorrect deep link plist property (#9885)
Browse files Browse the repository at this point in the history
  • Loading branch information
FabianLars committed May 27, 2024
1 parent 9970d88 commit 4754786
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changes/fix-macos-deep-link-cfbundleurlname.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
tauri-bundler: "patch:bug"
---

Fixed an issue causing the deep link feature to create invalid `Info.plist` values on macOS.
2 changes: 1 addition & 1 deletion tooling/bundler/src/bundle/macos/app.rs
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@ fn create_info_plist(
),
);
dict.insert(
"CFBundleTypeName".into(),
"CFBundleURLName".into(),
protocol
.name
.clone()
Expand Down

0 comments on commit 4754786

Please sign in to comment.