From b11de7e83b22201f9b59d8418558cbc2464f06fa Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Fri, 30 Oct 2020 18:12:29 +0000 Subject: [PATCH] Allow access to mobile versions of newswire and links --- daemon.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/daemon.py b/daemon.py index 7e3895a09..d804d5e79 100644 --- a/daemon.py +++ b/daemon.py @@ -9129,7 +9129,10 @@ class PubServer(BaseHTTPRequestHandler): # if not authorized then show the login screen if htmlGET and self.path != '/login' and \ - not self._pathIsImage(self.path) and self.path != '/': + not self._pathIsImage(self.path) and \ + self.path != '/' and \ + self.path != '/users/news/linksmobile' and \ + self.path != '/users/news/newswiremobile': if self._redirectToLoginScreen(callingDomain, self.path, self.server.httpPrefix, self.server.domainFull,