From 4cbdcf440969de2bd0c0cac3dad53d582879465e Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Fri, 19 Feb 2021 13:55:00 +0100 Subject: [PATCH] Fix sending accept to old follows --- server/lib/activitypub/process/process-follow.ts | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/server/lib/activitypub/process/process-follow.ts b/server/lib/activitypub/process/process-follow.ts index 076ad9cf4..38d684512 100644 --- a/server/lib/activitypub/process/process-follow.ts +++ b/server/lib/activitypub/process/process-follow.ts @@ -69,6 +69,13 @@ async function processFollow (byActor: MActorSignature, activityId: string, targ // Or if the instance automatically accepts followers if (actorFollow.state !== 'accepted' && (isFollowingInstance === false || CONFIG.FOLLOWERS.INSTANCE.MANUAL_APPROVAL === false)) { actorFollow.state = 'accepted' + + await actorFollow.save({ transaction: t }) + } + + // Before PeerTube V3 we did not save the follow ID. Try to fix these old follows + if (!actorFollow.url) { + actorFollow.url = activityId await actorFollow.save({ transaction: t }) } -- 2.41.0