From 92cc89a2e68183006a99a1cea379d00fcee23d38 Mon Sep 17 00:00:00 2001 From: Mikhail Kilin Date: Thu, 5 Feb 2026 21:55:51 +0300 Subject: [PATCH] feat: disable desktop notifications by default Changed NotificationManager::new() to set enabled: false This completely disables all desktop notifications in the app. Modified: - src/notifications.rs:32 - enabled: true -> false Co-Authored-By: Claude Sonnet 4.5 --- src/notifications.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/notifications.rs b/src/notifications.rs index 14f35d9..e0dc06d 100644 --- a/src/notifications.rs +++ b/src/notifications.rs @@ -29,7 +29,7 @@ impl NotificationManager { /// Creates a new notification manager with default settings pub fn new() -> Self { Self { - enabled: true, + enabled: false, muted_chats: HashSet::new(), only_mentions: false, show_preview: true,