diff options
Diffstat (limited to 'server/lib/activitypub/process/process-create.ts')
-rw-r--r-- | server/lib/activitypub/process/process-create.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/lib/activitypub/process/process-create.ts b/server/lib/activitypub/process/process-create.ts index e89d1ab45..2e64d981e 100644 --- a/server/lib/activitypub/process/process-create.ts +++ b/server/lib/activitypub/process/process-create.ts | |||
@@ -70,7 +70,7 @@ export { | |||
70 | // --------------------------------------------------------------------------- | 70 | // --------------------------------------------------------------------------- |
71 | 71 | ||
72 | async function processCreateVideo (videoToCreateData: VideoObject, notify: boolean) { | 72 | async function processCreateVideo (videoToCreateData: VideoObject, notify: boolean) { |
73 | const syncParam = { rates: false, shares: false, comments: false, thumbnail: true, refreshVideo: false } | 73 | const syncParam = { rates: false, shares: false, comments: false, refreshVideo: false } |
74 | const { video, created } = await getOrCreateAPVideo({ videoObject: videoToCreateData, syncParam }) | 74 | const { video, created } = await getOrCreateAPVideo({ videoObject: videoToCreateData, syncParam }) |
75 | 75 | ||
76 | if (created && notify) Notifier.Instance.notifyOnNewVideoIfNeeded(video) | 76 | if (created && notify) Notifier.Instance.notifyOnNewVideoIfNeeded(video) |