aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/controllers/api/videos/update.ts
diff options
context:
space:
mode:
Diffstat (limited to 'server/controllers/api/videos/update.ts')
-rw-r--r--server/controllers/api/videos/update.ts5
1 files changed, 5 insertions, 0 deletions
diff --git a/server/controllers/api/videos/update.ts b/server/controllers/api/videos/update.ts
index a98a3e67c..07f9690ec 100644
--- a/server/controllers/api/videos/update.ts
+++ b/server/controllers/api/videos/update.ts
@@ -99,6 +99,11 @@ export async function updateVideo (req: express.Request, res: express.Response)
99 isNewVideo = await updateVideoPrivacy({ videoInstance, videoInfoToUpdate, hadPrivacyForFederation, transaction: t }) 99 isNewVideo = await updateVideoPrivacy({ videoInstance, videoInfoToUpdate, hadPrivacyForFederation, transaction: t })
100 } 100 }
101 101
102 // Force updatedAt attribute change
103 if (!videoInstance.changed()) {
104 await videoInstance.setAsRefreshed()
105 }
106
102 const videoInstanceUpdated = await videoInstance.save(sequelizeOptions) as MVideoFullLight 107 const videoInstanceUpdated = await videoInstance.save(sequelizeOptions) as MVideoFullLight
103 108
104 // Thumbnail & preview updates? 109 // Thumbnail & preview updates?