From 307d386cc3effadf010278a5fc83948d9ccd091b Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Thu, 25 Feb 2021 18:31:10 +0000 Subject: [PATCH] Avoid circularity --- daemon.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/daemon.py b/daemon.py index eda5f4bed..76ed6d7b9 100644 --- a/daemon.py +++ b/daemon.py @@ -10374,7 +10374,8 @@ class PubServer(BaseHTTPRequestHandler): usersInPath = True # redirect to the welcome screen - if htmlGET and authorized and usersInPath: + if htmlGET and authorized and usersInPath and \ + not self.path.endswith('/welcome'): nickname = self.path.split('/users/')[1] if '/' in nickname: nickname = nickname.split('/')[0]