handle followers/following pages

main
Bob Mottram 2020-07-14 18:41:57 +01:00
parent c28041140f
commit 0dd0ffc3d8
1 changed files with 2 additions and 0 deletions

View File

@ -1744,7 +1744,9 @@ class PubServer(BaseHTTPRequestHandler):
divertToLoginScreen = False divertToLoginScreen = False
else: else:
if self.path.endswith('/following') or \ if self.path.endswith('/following') or \
'/following?page=' in self.path or \
self.path.endswith('/followers') or \ self.path.endswith('/followers') or \
'/followers?page=' in self.path or \
self.path.endswith('/skills') or \ self.path.endswith('/skills') or \
self.path.endswith('/roles') or \ self.path.endswith('/roles') or \
self.path.endswith('/shares'): self.path.endswith('/shares'):