blob: 7810b19c6e8cdf3af2af83d4df4b9d1fce6f4833 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
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,
|