We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b665c9c commit 5661cceCopy full SHA for 5661cce
.changes/notification-fix-dev-name.md
@@ -0,0 +1,5 @@
1
+---
2
+"notification": patch
3
4
+
5
+Fix development mode function name check to set the app ID on macOS.
plugins/notification/src/desktop.rs
@@ -186,7 +186,7 @@ mod imp {
186
}
187
#[cfg(target_os = "macos")]
188
{
189
- let _ = crate::notify_rust::set_application(if tauri::dev() {
+ let _ = crate::notify_rust::set_application(if tauri::is_dev() {
190
"com.apple.Terminal"
191
} else {
192
&self.identifier
0 commit comments