diff options
Diffstat (limited to 'server')
-rw-r--r-- | server/helpers/custom-validators/activitypub/misc.ts | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/server/helpers/custom-validators/activitypub/misc.ts b/server/helpers/custom-validators/activitypub/misc.ts index f9445929b..5afcfbedc 100644 --- a/server/helpers/custom-validators/activitypub/misc.ts +++ b/server/helpers/custom-validators/activitypub/misc.ts | |||
@@ -25,8 +25,7 @@ function isActivityPubUrlValid (url: string) { | |||
25 | } | 25 | } |
26 | 26 | ||
27 | function isBaseActivityValid (activity: any, type: string) { | 27 | function isBaseActivityValid (activity: any, type: string) { |
28 | return (activity['@context'] === undefined || Array.isArray(activity['@context'])) && | 28 | return activity.type === type && |
29 | activity.type === type && | ||
30 | isActivityPubUrlValid(activity.id) && | 29 | isActivityPubUrlValid(activity.id) && |
31 | isObjectValid(activity.actor) && | 30 | isObjectValid(activity.actor) && |
32 | isUrlCollectionValid(activity.to) && | 31 | isUrlCollectionValid(activity.to) && |