diff --git a/person.py b/person.py index 216ae096..9fcf099d 100644 --- a/person.py +++ b/person.py @@ -190,7 +190,8 @@ def getDefaultPersonContext() -> str: 'identityKey': {'@id': 'toot:identityKey', '@type': '@id'}, 'fingerprintKey': {'@id': 'toot:fingerprintKey', '@type': '@id'}, 'messageFranking': 'toot:messageFranking', - 'publicKeyBase64': 'toot:publicKeyBase64' + 'publicKeyBase64': 'toot:publicKeyBase64', + 'discoverable': 'toot:discoverable' } @@ -279,6 +280,7 @@ def createPersonBase(baseDir: str, nickname: str, domain: str, port: int, }, 'inbox': inboxStr, 'manuallyApprovesFollowers': approveFollowers, + 'discoverable': False, 'name': personName, 'outbox': personId+'/outbox', 'preferredUsername': personName,