Skip to content

Commit

Permalink
notifier.notify - silent
Browse files Browse the repository at this point in the history
  • Loading branch information
JasminDreasond committed Aug 16, 2023
1 parent 51d3564 commit 60f2a52
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion electron/main/notification/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ const engines = {
title: data?.title,
subtitle: data?.subtitle,
message: data?.body,
sound: data?.sound, // Case Sensitive string for location of sound file, or use one of macOS' native sounds (see below)
sound: data.silent ? false : data?.sound, // Case Sensitive string for location of sound file, or use one of macOS' native sounds (see below)
icon: data?.icon, // Absolute Path to Triggering Icon
contentImage: data?.image, // Absolute Path to Attached Image (Content Image)
open: data?.url, // URL to open on Click
Expand Down

0 comments on commit 60f2a52

Please sign in to comment.