From 296018f0cc2e9ef39c175e2129abc35455f5745b Mon Sep 17 00:00:00 2001 From: tototomate123 Date: Tue, 2 Sep 2025 20:05:43 +0200 Subject: [PATCH] mark notification suppression as experimental --- src/core/config/check.rs | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/core/config/check.rs b/src/core/config/check.rs index 849e4c7b..7df6173f 100644 --- a/src/core/config/check.rs +++ b/src/core/config/check.rs @@ -229,6 +229,13 @@ pub fn check(config: &Config) -> Result { )); } + if config.suppress_push_when_active { + warn!( + "Push suppression when active is enabled (EXPERIMENTAL): behavior may change or be \ + unstable. Disable by removing or setting suppress_push_when_active to false." + ); + } + if config .url_preview_domain_contains_allowlist .contains(&"*".to_owned())