Skip to content

Commit 4754786

Browse files
authored
fix(bundler/macos): Fix incorrect deep link plist property (#9885)
1 parent 9970d88 commit 4754786

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
tauri-bundler: "patch:bug"
3+
---
4+
5+
Fixed an issue causing the deep link feature to create invalid `Info.plist` values on macOS.

tooling/bundler/src/bundle/macos/app.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,7 @@ fn create_info_plist(
293293
),
294294
);
295295
dict.insert(
296-
"CFBundleTypeName".into(),
296+
"CFBundleURLName".into(),
297297
protocol
298298
.name
299299
.clone()

0 commit comments

Comments
 (0)