The minimal peer set

merge-requests/3/merge
Bob Mottram 2019-11-13 11:40:56 +00:00
parent 3e543342c3
commit 2124e31ba0
1 changed files with 1 additions and 1 deletions

View File

@ -342,7 +342,7 @@ class PubServer(BaseHTTPRequestHandler):
# On a large instance you are somewhat lost in the crowd, but on small
# instances a full list of peers would convey a lot of information about
# the interests of a small number of accounts
msg=json.dumps([self.server.domainFull]).encode('utf-8')
msg=json.dumps(['mastodon.social',self.server.domainFull]).encode('utf-8')
self._set_headers('application/ld+json',len(msg),None)
self._write(msg)
return True