diff options
Diffstat (limited to 'server/lib/activitypub')
-rw-r--r-- | server/lib/activitypub/process/process-create.ts | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/server/lib/activitypub/process/process-create.ts b/server/lib/activitypub/process/process-create.ts index 5197dac73..cff8dcfc6 100644 --- a/server/lib/activitypub/process/process-create.ts +++ b/server/lib/activitypub/process/process-create.ts | |||
@@ -90,9 +90,6 @@ async function processCreateView (byActor: ActorModel, activity: ActivityCreate) | |||
90 | } | 90 | } |
91 | const { video } = await getOrCreateVideoAndAccountAndChannel(options) | 91 | const { video } = await getOrCreateVideoAndAccountAndChannel(options) |
92 | 92 | ||
93 | const actorExists = await ActorModel.isActorUrlExist(view.actor) | ||
94 | if (actorExists === false) throw new Error('Unknown actor ' + view.actor) | ||
95 | |||
96 | await Redis.Instance.addVideoView(video.id) | 93 | await Redis.Instance.addVideoView(video.id) |
97 | 94 | ||
98 | if (video.isOwned()) { | 95 | if (video.isOwned()) { |