diff options
Diffstat (limited to 'server/models/video/video.ts')
-rw-r--r-- | server/models/video/video.ts | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/server/models/video/video.ts b/server/models/video/video.ts index f32216e90..ccb9d64ca 100644 --- a/server/models/video/video.ts +++ b/server/models/video/video.ts | |||
@@ -813,10 +813,8 @@ export class VideoModel extends Model<VideoModel> { | |||
813 | const details = instance.toFormattedDetailsJSON() | 813 | const details = instance.toFormattedDetailsJSON() |
814 | 814 | ||
815 | for (const abuse of instance.VideoAbuses) { | 815 | for (const abuse of instance.VideoAbuses) { |
816 | tasks.push((_ => { | 816 | abuse.deletedVideo = details |
817 | abuse.deletedVideo = details | 817 | tasks.push(abuse.save({ transaction: options.transaction })) |
818 | return abuse.save({ transaction: options.transaction }) | ||
819 | })()) | ||
820 | } | 818 | } |
821 | 819 | ||
822 | Promise.all(tasks) | 820 | Promise.all(tasks) |