Don;t show options for the news account

main
Bob Mottram 2020-10-25 22:52:41 +00:00
parent 99fe61f5b7
commit e5ec6d4872
1 changed files with 1 additions and 1 deletions

View File

@ -4492,7 +4492,7 @@ class PubServer(BaseHTTPRequestHandler):
""" """
optionsStr = path.split('?options=')[1] optionsStr = path.split('?options=')[1]
originPathStr = path.split('?options=')[0] originPathStr = path.split('?options=')[0]
if ';' in optionsStr: if ';' in optionsStr and '/users/news/' not in self.path:
pageNumber = 1 pageNumber = 1
optionsList = optionsStr.split(';') optionsList = optionsStr.split(';')
optionsActor = optionsList[0] optionsActor = optionsList[0]