main
Bob Mottram 2023-03-15 17:57:28 +00:00
parent f9d4a76179
commit d170f6222c
1 changed files with 7 additions and 0 deletions

View File

@ -16901,6 +16901,13 @@ class PubServer(BaseHTTPRequestHandler):
'_GET', '_security_txt[calling_domain]', '_GET', '_security_txt[calling_domain]',
self.server.debug) self.server.debug)
if self.path.startswith('/users/') and \
self.path.endswith('/followers_synchronization'):
print('DEBUG: followers synchronization request ' +
self.path + ' ' + calling_domain)
self._404()
return
if self.path == '/logout': if self.path == '/logout':
if not self.server.news_instance: if not self.server.news_instance:
msg = \ msg = \