diff options
Diffstat (limited to 'server/lib/video-channel.ts')
-rw-r--r-- | server/lib/video-channel.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/lib/video-channel.ts b/server/lib/video-channel.ts index 2fd63a8c4..8322c9ad2 100644 --- a/server/lib/video-channel.ts +++ b/server/lib/video-channel.ts | |||
@@ -36,7 +36,7 @@ async function federateAllVideosOfChannel (videoChannel: MChannelId) { | |||
36 | const videoIds = await VideoModel.getAllIdsFromChannel(videoChannel) | 36 | const videoIds = await VideoModel.getAllIdsFromChannel(videoChannel) |
37 | 37 | ||
38 | for (const videoId of videoIds) { | 38 | for (const videoId of videoIds) { |
39 | const video = await VideoModel.loadAndPopulateAccountAndServerAndTags(videoId) | 39 | const video = await VideoModel.loadFull(videoId) |
40 | 40 | ||
41 | await federateVideoIfNeeded(video, false) | 41 | await federateVideoIfNeeded(video, false) |
42 | } | 42 | } |