This commit is contained in:
Your Name 2025-01-17 22:07:46 -05:00 committed by Henri Dickson
parent 2f35931213
commit 6117e6b9e2
4 changed files with 3 additions and 4 deletions

View file

@ -68,7 +68,6 @@ x-shared:
TAKAHE_MEDIA_BACKEND: local://www/media/
TAKAHE_MEDIA_ROOT: /www/media
TAKAHE_USE_PROXY_HEADERS: true
TAKAHE_ALLOW_USER_MIGRATION: true
TAKAHE_STATOR_CONCURRENCY: ${TAKAHE_STATOR_CONCURRENCY:-4}
TAKAHE_STATOR_CONCURRENCY_PER_MODEL: ${TAKAHE_STATOR_CONCURRENCY_PER_MODEL:-2}
TAKAHE_VAPID_PUBLIC_KEY:

@ -1 +1 @@
Subproject commit b889e7322fcb3021e660e3ce8b7c2290273f161a
Subproject commit 5c09b76a4a8ce8bf588a396bf89709785ebcaf6f

View file

@ -107,7 +107,7 @@ class Command(BaseCommand):
self.stdout.write("Checking remote identities")
for i in tqdm(
Identity.objects.filter(
public_key__isnull=True,
# public_key__isnull=True,
local=False,
restriction=0,
state="connection_issue",

View file

@ -111,7 +111,7 @@ class APIdentity(models.Model):
@property
def restricted(self):
return self.takahe_identity.restriction != 2
return self.takahe_identity.restriction == 2
@property
def following(self):