From 2124e31ba01dbca031bee41350ec3537392e4c27 Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Wed, 13 Nov 2019 11:40:56 +0000 Subject: [PATCH] The minimal peer set --- daemon.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daemon.py b/daemon.py index f2c29d89..d575bf93 100644 --- a/daemon.py +++ b/daemon.py @@ -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