We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a04ea2f commit 62ce5dfCopy full SHA for 62ce5df
2 files changed
.changes/notification-fix-dev-check.md
@@ -0,0 +1,5 @@
1
+---
2
+"notification": patch
3
4
+
5
+Fix development mode check to set the app ID on macOS.
plugins/notification/src/desktop.rs
@@ -186,10 +186,10 @@ mod imp {
186
}
187
#[cfg(target_os = "macos")]
188
{
189
- let _ = crate::notify_rust::set_application(if cfg!(feature = "custom-protocol") {
190
- &self.identifier
191
- } else {
+ let _ = crate::notify_rust::set_application(if tauri::dev() {
192
"com.apple.Terminal"
+ } else {
+ &self.identifier
193
});
194
195
0 commit comments