Blogs can be crawled

merge-requests/30/head
Bob Mottram 2021-11-08 13:34:29 +00:00
parent a71c352ce3
commit 135f0f760f
1 changed files with 2 additions and 1 deletions

View File

@ -12277,7 +12277,8 @@ class PubServer(BaseHTTPRequestHandler):
""" """
if path == '/' or path == '/about' or \ if path == '/' or path == '/about' or \
path.startswith('/api/') or \ path.startswith('/api/') or \
path.startswith('/nodeinfo/'): path.startswith('/nodeinfo/') or \
path.startswith('/blog/'):
return True return True
return False return False