aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/lib/activitypub/process-update.ts
diff options
context:
space:
mode:
Diffstat (limited to 'server/lib/activitypub/process-update.ts')
-rw-r--r--server/lib/activitypub/process-update.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/lib/activitypub/process-update.ts b/server/lib/activitypub/process-update.ts
index b732fce33..a9aa5eeb4 100644
--- a/server/lib/activitypub/process-update.ts
+++ b/server/lib/activitypub/process-update.ts
@@ -80,7 +80,7 @@ async function updateRemoteVideo (account: AccountInstance, videoAttributesToUpd
80 } 80 }
81 await Promise.all(videoFileDestroyTasks) 81 await Promise.all(videoFileDestroyTasks)
82 82
83 const videoFileAttributes = await videoFileActivityUrlToDBAttributes(videoInstance, videoAttributesToUpdate) 83 const videoFileAttributes = videoFileActivityUrlToDBAttributes(videoInstance, videoAttributesToUpdate)
84 const tasks: Bluebird<any>[] = videoFileAttributes.map(f => db.VideoFile.create(f)) 84 const tasks: Bluebird<any>[] = videoFileAttributes.map(f => db.VideoFile.create(f))
85 await Promise.all(tasks) 85 await Promise.all(tasks)
86 86