From 61f0ac29372fe973c15277c469bf007d6e1453c9 Mon Sep 17 00:00:00 2001 From: dgtlmoon Date: Fri, 4 Nov 2022 23:46:03 +0100 Subject: [PATCH] HIDE_REFERER incompatible with password based login, added comment to code #996 --- changedetectionio/changedetection.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/changedetectionio/changedetection.py b/changedetectionio/changedetection.py index 461476e1..472e6ab2 100755 --- a/changedetectionio/changedetection.py +++ b/changedetectionio/changedetection.py @@ -102,8 +102,8 @@ def main(): has_password=datastore.data['settings']['application']['password'] != False ) - # Monitored websites will not receive a Referer header - # when a user clicks on an outgoing link. + # Monitored websites will not receive a Referer header when a user clicks on an outgoing link. + # @Note: Incompatible with password login (and maybe other features) for now, submit a PR! @app.after_request def hide_referrer(response): if os.getenv("HIDE_REFERER", False):