diff options
-rw-r--r-- | .prettierignore | 1 | ||||
-rw-r--r-- | .prettierrc.yml | 8 | ||||
-rw-r--r-- | server/lib/activitypub/process/process-create.ts | 3 | ||||
-rw-r--r-- | server/lib/schedulers/videos-redundancy-scheduler.ts | 2 |
4 files changed, 2 insertions, 12 deletions
diff --git a/.prettierignore b/.prettierignore deleted file mode 100644 index a6c57f5fb..000000000 --- a/.prettierignore +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | *.json | ||
diff --git a/.prettierrc.yml b/.prettierrc.yml deleted file mode 100644 index d8379671f..000000000 --- a/.prettierrc.yml +++ /dev/null | |||
@@ -1,8 +0,0 @@ | |||
1 | printWidth: 140 | ||
2 | tabWidth: 2 | ||
3 | useTabs: false | ||
4 | semi: false | ||
5 | singleQuote: true | ||
6 | trailingComma: false | ||
7 | bracketSpacing: true | ||
8 | arrowParens: always | ||
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 |