diff options
Diffstat (limited to 'server')
-rw-r--r-- | server/helpers/custom-validators/activitypub/activity.ts | 2 | ||||
-rw-r--r-- | server/lib/activitypub/process/process-delete.ts | 4 |
2 files changed, 4 insertions, 2 deletions
diff --git a/server/helpers/custom-validators/activitypub/activity.ts b/server/helpers/custom-validators/activitypub/activity.ts index 1d2ef2ac6..381a29e66 100644 --- a/server/helpers/custom-validators/activitypub/activity.ts +++ b/server/helpers/custom-validators/activitypub/activity.ts | |||
@@ -16,6 +16,7 @@ import { | |||
16 | sanitizeAndCheckVideoTorrentUpdateActivity | 16 | sanitizeAndCheckVideoTorrentUpdateActivity |
17 | } from './videos' | 17 | } from './videos' |
18 | import { isViewActivityValid } from './view' | 18 | import { isViewActivityValid } from './view' |
19 | import { exists } from '../misc' | ||
19 | 20 | ||
20 | function isRootActivityValid (activity: any) { | 21 | function isRootActivityValid (activity: any) { |
21 | return Array.isArray(activity['@context']) && ( | 22 | return Array.isArray(activity['@context']) && ( |
@@ -26,6 +27,7 @@ function isRootActivityValid (activity: any) { | |||
26 | ) || | 27 | ) || |
27 | ( | 28 | ( |
28 | isActivityPubUrlValid(activity.id) && | 29 | isActivityPubUrlValid(activity.id) && |
30 | exists(activity.actor) && | ||
29 | (isActivityPubUrlValid(activity.actor) || isActivityPubUrlValid(activity.actor.id)) | 31 | (isActivityPubUrlValid(activity.actor) || isActivityPubUrlValid(activity.actor.id)) |
30 | ) | 32 | ) |
31 | ) | 33 | ) |
diff --git a/server/lib/activitypub/process/process-delete.ts b/server/lib/activitypub/process/process-delete.ts index ff0caa343..3c830abea 100644 --- a/server/lib/activitypub/process/process-delete.ts +++ b/server/lib/activitypub/process/process-delete.ts | |||
@@ -15,7 +15,7 @@ async function processDeleteActivity (activity: ActivityDelete) { | |||
15 | 15 | ||
16 | if (activity.actor === objectUrl) { | 16 | if (activity.actor === objectUrl) { |
17 | let actor = await ActorModel.loadByUrl(activity.actor) | 17 | let actor = await ActorModel.loadByUrl(activity.actor) |
18 | if (!actor) return | 18 | if (!actor) return undefined |
19 | 19 | ||
20 | if (actor.type === 'Person') { | 20 | if (actor.type === 'Person') { |
21 | if (!actor.Account) throw new Error('Actor ' + actor.url + ' is a person but we cannot find it in database.') | 21 | if (!actor.Account) throw new Error('Actor ' + actor.url + ' is a person but we cannot find it in database.') |
@@ -45,7 +45,7 @@ async function processDeleteActivity (activity: ActivityDelete) { | |||
45 | } | 45 | } |
46 | } | 46 | } |
47 | 47 | ||
48 | return | 48 | return undefined |
49 | } | 49 | } |
50 | 50 | ||
51 | // --------------------------------------------------------------------------- | 51 | // --------------------------------------------------------------------------- |