From 5bbbe3743658147f8649cef14b07bc5ea099fb2a Mon Sep 17 00:00:00 2001 From: dgtlmoon Date: Wed, 4 Feb 2026 14:27:54 +0100 Subject: [PATCH] UI- Fix possible bug adding tags in quickwatch form --- changedetectionio/blueprint/ui/views.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/changedetectionio/blueprint/ui/views.py b/changedetectionio/blueprint/ui/views.py index 172829c94..4afa94129 100644 --- a/changedetectionio/blueprint/ui/views.py +++ b/changedetectionio/blueprint/ui/views.py @@ -26,7 +26,7 @@ def construct_blueprint(datastore: ChangeDetectionStore, update_q, queuedWatchMe add_paused = request.form.get('edit_and_watch_submit_button') != None from changedetectionio import processors processor = request.form.get('processor', processors.get_default_processor()) - new_uuid = datastore.add_watch(url=url, tag=request.form.get('tags').strip(), extras={'paused': add_paused, 'processor': processor}) + new_uuid = datastore.add_watch(url=url, tag=request.form.get('tags','').strip(), extras={'paused': add_paused, 'processor': processor}) if new_uuid: if add_paused: @@ -39,4 +39,4 @@ def construct_blueprint(datastore: ChangeDetectionStore, update_q, queuedWatchMe return redirect(url_for('watchlist.index', tag=request.args.get('tag',''))) - return views_blueprint \ No newline at end of file + return views_blueprint