aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/lib
diff options
context:
space:
mode:
Diffstat (limited to 'server/lib')
-rw-r--r--server/lib/activitypub/process/process-create.ts3
-rw-r--r--server/lib/schedulers/videos-redundancy-scheduler.ts2
2 files changed, 2 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()) {
diff --git a/server/lib/schedulers/videos-redundancy-scheduler.ts b/server/lib/schedulers/videos-redundancy-scheduler.ts
index 960651712..998d2295a 100644
--- a/server/lib/schedulers/videos-redundancy-scheduler.ts
+++ b/server/lib/schedulers/videos-redundancy-scheduler.ts
@@ -30,6 +30,8 @@ export class VideosRedundancyScheduler extends AbstractScheduler {
30 this.executing = true 30 this.executing = true
31 31
32 for (const obj of CONFIG.REDUNDANCY.VIDEOS.STRATEGIES) { 32 for (const obj of CONFIG.REDUNDANCY.VIDEOS.STRATEGIES) {
33 if (!isTestInstance()) logger.info('Running redundancy scheduler for strategy %s.', obj.strategy)
34
33 try { 35 try {
34 const videoToDuplicate = await this.findVideoToDuplicate(obj) 36 const videoToDuplicate = await this.findVideoToDuplicate(obj)
35 if (!videoToDuplicate) continue 37 if (!videoToDuplicate) continue