diff options
Diffstat (limited to 'net-im/signal-desktop/files/patch-services_notifications.ts')
-rw-r--r-- | net-im/signal-desktop/files/patch-services_notifications.ts | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/net-im/signal-desktop/files/patch-services_notifications.ts b/net-im/signal-desktop/files/patch-services_notifications.ts new file mode 100644 index 000000000000..7810b19c6e8c --- /dev/null +++ b/net-im/signal-desktop/files/patch-services_notifications.ts @@ -0,0 +1,11 @@ +--- ts/services/notifications.ts.orig 2025-05-23 12:14:12 UTC ++++ ts/services/notifications.ts +@@ -196,7 +196,7 @@ class NotificationService extends EventEmitter { + this.#lastNotification?.close(); + + const notification = new window.Notification(title, { +- body: OS.isLinux() ? filterNotificationText(message) : message, ++ body: (OS.isLinux() || OS.isFreeBSD()) ? filterNotificationText(message) : message, + icon: iconUrl, + silent: true, + tag: messageId, |