From 943cf9c60ae182e99ef880180256183ff3c69f2b Mon Sep 17 00:00:00 2001 From: dgtlmoon Date: Mon, 14 Sep 2026 12:33:18 +0200 Subject: [PATCH] Favicon on/off - Was not actually applying at fetch time (#4432) --- changedetectionio/processors/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/changedetectionio/processors/base.py b/changedetectionio/processors/base.py index 9d4455e9a..e7730e28a 100644 --- a/changedetectionio/processors/base.py +++ b/changedetectionio/processors/base.py @@ -267,7 +267,7 @@ class difference_detection_processor(): await self.fetcher.run( current_include_filters=self.watch.get('include_filters'), empty_pages_are_a_change=empty_pages_are_a_change, - fetch_favicon=self.watch.favicon_is_expired(), + fetch_favicon=self.watch.favicon_is_expired() and self.datastore.data['settings']['application'].get('ui', {}).get('favicons_enabled', True), ignore_status_codes=ignore_status_codes, is_binary=is_binary, request_body=request_body,