ports/net-im/signal-desktop/files/patch-services_notifications.ts
2025-05-28 09:07:44 +02:00

11 lines
505 B
TypeScript

--- 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,