From 782ed32b050d7fb1ffbda352c775a5a840f8dd23 Mon Sep 17 00:00:00 2001 From: dgtlmoon Date: Sat, 28 Jan 2023 23:27:44 +0100 Subject: [PATCH] WIP --- changedetectionio/__init__.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/changedetectionio/__init__.py b/changedetectionio/__init__.py index 11bb6c1cf..60f49ed24 100644 --- a/changedetectionio/__init__.py +++ b/changedetectionio/__init__.py @@ -290,6 +290,9 @@ def changedetection_app(config=None, datastore_o=None): if app_rss_token == rss_url_token: app.config['LOGIN_DISABLED'] = True + if request.path.startswith('/diff/') and datastore.data['settings']['application'].get('shared_diff_access'): + app.config['LOGIN_DISABLED'] = True + @app.route("/rss", methods=['GET']) @login_required def rss():