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 <noreply@anthropic.com>
This commit is contained in:
Mikhail Kilin
2026-02-05 22:01:25 +03:00
parent 92cc89a2e6
commit c5235de6e2

View File

@@ -126,7 +126,7 @@ fn default_reaction_other_color() -> String {
} }
fn default_notifications_enabled() -> bool { fn default_notifications_enabled() -> bool {
true false
} }
fn default_show_preview() -> bool { fn default_show_preview() -> bool {