aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/lib/activitypub/process
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2018-12-04 15:12:54 +0100
committerChocobozzz <me@florianbigard.com>2018-12-04 16:04:14 +0100
commit745778256ced65415b04a9817fc49db70d4b6681 (patch)
tree184a3cd6c7d24ba94c5aa282b52a162a3b95d21c /server/lib/activitypub/process
parent2beb98952a4c5939f33ea2dc77f0bd053bffbb5a (diff)
downloadPeerTube-745778256ced65415b04a9817fc49db70d4b6681.tar.gz
PeerTube-745778256ced65415b04a9817fc49db70d4b6681.tar.zst
PeerTube-745778256ced65415b04a9817fc49db70d4b6681.zip
Fix thumbnail processing
Diffstat (limited to 'server/lib/activitypub/process')
-rw-r--r--server/lib/activitypub/process/process-update.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/lib/activitypub/process/process-update.ts b/server/lib/activitypub/process/process-update.ts
index 03831a00e..c6b42d846 100644
--- a/server/lib/activitypub/process/process-update.ts
+++ b/server/lib/activitypub/process/process-update.ts
@@ -51,7 +51,7 @@ async function processUpdateVideo (actor: ActorModel, activity: ActivityUpdate)
51 return undefined 51 return undefined
52 } 52 }
53 53
54 const { video } = await getOrCreateVideoAndAccountAndChannel({ videoObject: videoObject.id }) 54 const { video } = await getOrCreateVideoAndAccountAndChannel({ videoObject: videoObject.id, allowRefresh: false })
55 const channelActor = await getOrCreateVideoChannelFromVideoObject(videoObject) 55 const channelActor = await getOrCreateVideoChannelFromVideoObject(videoObject)
56 56
57 const updateOptions = { 57 const updateOptions = {