aboutsummaryrefslogtreecommitdiff
path: root/net-im/signal-desktop/files/patch-services_notifications.ts
diff options
context:
space:
mode:
Diffstat (limited to 'net-im/signal-desktop/files/patch-services_notifications.ts')
-rw-r--r--net-im/signal-desktop/files/patch-services_notifications.ts11
1 files changed, 0 insertions, 11 deletions
diff --git a/net-im/signal-desktop/files/patch-services_notifications.ts b/net-im/signal-desktop/files/patch-services_notifications.ts
deleted file mode 100644
index 7810b19c6e8c..000000000000
--- a/net-im/signal-desktop/files/patch-services_notifications.ts
+++ /dev/null
@@ -1,11 +0,0 @@
---- 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,