From 387b672197d8065b330d1a41cbdca032b3cc682c Mon Sep 17 00:00:00 2001 From: dgtlmoon Date: Tue, 17 Feb 2026 01:27:53 +0100 Subject: [PATCH] Apply suggestion from @dgtlmoon --- changedetectionio/blueprint/ui/__init__.py | 1 - 1 file changed, 1 deletion(-) diff --git a/changedetectionio/blueprint/ui/__init__.py b/changedetectionio/blueprint/ui/__init__.py index f24c60fea..ec0559f5d 100644 --- a/changedetectionio/blueprint/ui/__init__.py +++ b/changedetectionio/blueprint/ui/__init__.py @@ -219,7 +219,6 @@ def construct_blueprint(datastore: ChangeDetectionStore, update_q, worker_pool, if watch_count < 10: # Run synchronously for small watch counts mark_viewed_impl() - flash(gettext("Marked as viewed.")) else: # Start background thread for large watch counts thread = threading.Thread(target=mark_viewed_impl, daemon=True)