mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 01:39:16 -04:00
11 lines
505 B
TypeScript
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,
|