fix: relays not getting accepted

This commit is contained in:
Mar0xy 2023-10-17 21:08:15 +02:00
parent f73e56ca2c
commit 6cac291d3d
No known key found for this signature in database
GPG Key ID: 56569BBE47D2C828
1 changed files with 6 additions and 6 deletions

View File

@ -296,9 +296,9 @@ export class ApPersonService implements OnModuleInit {
//#region resolve counts
const _resolver = resolver ?? this.apResolverService.createResolver();
const outboxcollection = await _resolver.resolveCollection(person.outbox);
const followerscollection = await _resolver.resolveCollection(person.followers!);
const followingcollection = await _resolver.resolveCollection(person.following!);
const outboxcollection = await _resolver.resolveCollection(person.outbox).catch(() => { return null; });
const followerscollection = await _resolver.resolveCollection(person.followers!).catch(() => { return null; });
const followingcollection = await _resolver.resolveCollection(person.following!).catch(() => { return null; });
try {
// Start transaction
@ -320,9 +320,9 @@ export class ApPersonService implements OnModuleInit {
host,
inbox: person.inbox,
sharedInbox: person.sharedInbox ?? person.endpoints?.sharedInbox,
notesCount: outboxcollection.totalItems ?? 0,
followersCount: followerscollection.totalItems ?? 0,
followingCount: followingcollection.totalItems ?? 0,
notesCount: outboxcollection?.totalItems ?? 0,
followersCount: followerscollection?.totalItems ?? 0,
followingCount: followingcollection?.totalItems ?? 0,
followersUri: person.followers ? getApId(person.followers) : undefined,
featured: person.featured ? getApId(person.featured) : undefined,
uri: person.id,