From c5235de6e2a37dc80ab3b87a2baefa22d90106c5 Mon Sep 17 00:00:00 2001 From: Mikhail Kilin Date: Thu, 5 Feb 2026 22:01:25 +0300 Subject: [PATCH] fix: disable notifications in config defaults The previous commit only changed NotificationManager::new() but the config layer was overriding it with default_notifications_enabled() = true. Changed default_notifications_enabled() to return false, which is the authoritative source for notification settings. Modified: - src/config/mod.rs - default_notifications_enabled: true -> false Co-Authored-By: Claude Sonnet 4.5 --- src/config/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config/mod.rs b/src/config/mod.rs index 92bd190..cf9d93c 100644 --- a/src/config/mod.rs +++ b/src/config/mod.rs @@ -126,7 +126,7 @@ fn default_reaction_other_color() -> String { } fn default_notifications_enabled() -> bool { - true + false } fn default_show_preview() -> bool {