From 95614fb298836feac49d0b3dbb6afa968626345b Mon Sep 17 00:00:00 2001 From: tobi <31960611+tsmethurst@users.noreply.github.com> Date: Tue, 17 Sep 2024 21:22:45 +0200 Subject: [PATCH] [bugfix] Fix incorrect policy value parsing (#3315) --- internal/ap/extract.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/ap/extract.go b/internal/ap/extract.go index f69fb299e..f5486a051 100644 --- a/internal/ap/extract.go +++ b/internal/ap/extract.go @@ -1170,7 +1170,7 @@ func extractPolicyValues[T WithIRI]( case owner.FollowersURI: PolicyValues = append(PolicyValues, gtsmodel.PolicyValueFollowers) case owner.FollowingURI: - PolicyValues = append(PolicyValues, gtsmodel.PolicyValueFollowers) + PolicyValues = append(PolicyValues, gtsmodel.PolicyValueFollowing) case owner.URI: PolicyValues = append(PolicyValues, gtsmodel.PolicyValueAuthor) default: