From 63fe386057bc315bc97e3cecf622c21ad9f6e6fd Mon Sep 17 00:00:00 2001 From: JonnyWong16 <9099342+JonnyWong16@users.noreply.github.com> Date: Thu, 9 Jan 2025 09:13:57 -0800 Subject: [PATCH] Disable basic auth for /newsletter and /image endpoints Fixes #2472 --- plexpy/webstart.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/plexpy/webstart.py b/plexpy/webstart.py index 8a6edc6e..1f3fb7ed 100644 --- a/plexpy/webstart.py +++ b/plexpy/webstart.py @@ -171,6 +171,12 @@ def initialize(options): '/status': { 'tools.auth_basic.on': False }, + '/newsletter': { + 'tools.auth_basic.on': False + }, + '/image': { + 'tools.auth_basic.on': False + }, '/interfaces': { 'tools.staticdir.on': True, 'tools.staticdir.dir': "interfaces",