From 597f771f3f2bfe4b1e7234a5760e23f0283e2b29 Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Wed, 10 Nov 2021 15:52:22 +0100 Subject: Fix video update transaction --- server/controllers/api/videos/update.ts | 2 +- server/models/video/video.ts | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'server') diff --git a/server/controllers/api/videos/update.ts b/server/controllers/api/videos/update.ts index fab1c2268..a0aa13d71 100644 --- a/server/controllers/api/videos/update.ts +++ b/server/controllers/api/videos/update.ts @@ -104,7 +104,7 @@ export async function updateVideo (req: express.Request, res: express.Response) // Force updatedAt attribute change if (!video.changed()) { - await video.setAsRefreshed() + await video.setAsRefreshed(t) } const videoInstanceUpdated = await video.save(sequelizeOptions) as MVideoFullLight diff --git a/server/models/video/video.ts b/server/models/video/video.ts index ba4cf541b..003741da0 100644 --- a/server/models/video/video.ts +++ b/server/models/video/video.ts @@ -1754,8 +1754,8 @@ export class VideoModel extends Model>> { return this.hasPrivacyForFederation() === false && isPrivacyForFederation(newPrivacy) === true } - setAsRefreshed () { - return setAsUpdated('video', this.id) + setAsRefreshed (transaction?: Transaction) { + return setAsUpdated('video', this.id, transaction) } requiresAuth () { -- cgit v1.2.3