diff options
Diffstat (limited to 'server/helpers/custom-validators/activitypub')
-rw-r--r-- | server/helpers/custom-validators/activitypub/misc.ts | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/server/helpers/custom-validators/activitypub/misc.ts b/server/helpers/custom-validators/activitypub/misc.ts index 2dac8e1ad..6c5c7abca 100644 --- a/server/helpers/custom-validators/activitypub/misc.ts +++ b/server/helpers/custom-validators/activitypub/misc.ts | |||
@@ -41,12 +41,10 @@ function setValidAttributedTo (obj: any) { | |||
41 | return true | 41 | return true |
42 | } | 42 | } |
43 | 43 | ||
44 | const newAttributesTo = obj.attributedTo.filter(a => { | 44 | obj.attributedTo = obj.attributedTo.filter(a => { |
45 | return (a.type === 'Group' || a.type === 'Person') && isActivityPubUrlValid(a.id) | 45 | return (a.type === 'Group' || a.type === 'Person') && isActivityPubUrlValid(a.id) |
46 | }) | 46 | }) |
47 | 47 | ||
48 | obj.attributedTo = newAttributesTo | ||
49 | |||
50 | return true | 48 | return true |
51 | } | 49 | } |
52 | 50 | ||