From dc4485e62084c0afd9795f943bcbf239ef888749 Mon Sep 17 00:00:00 2001 From: dgtlmoon Date: Tue, 24 Mar 2026 16:36:59 +0100 Subject: [PATCH] tweaks --- changedetectionio/api/Tags.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/changedetectionio/api/Tags.py b/changedetectionio/api/Tags.py index 1142cd9d6..0e3e6e054 100644 --- a/changedetectionio/api/Tags.py +++ b/changedetectionio/api/Tags.py @@ -85,6 +85,9 @@ class Tag(Resource): # Create clean tag dict without Watch-specific fields clean_tag = {k: v for k, v in tag.items() if k not in watch_only_fields} + # fetch_backend is a legacy field superseded by browser_profile — omit from API response + clean_tag.pop('fetch_backend', None) + return clean_tag @auth.check_token