aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--server/lib/activitypub/videos.ts2
-rw-r--r--server/lib/stat-manager.ts11
2 files changed, 6 insertions, 7 deletions
diff --git a/server/lib/activitypub/videos.ts b/server/lib/activitypub/videos.ts
index 15726f90b..127a0dd8a 100644
--- a/server/lib/activitypub/videos.ts
+++ b/server/lib/activitypub/videos.ts
@@ -336,7 +336,7 @@ async function updateVideoFromAP (options: {
336 } 336 }
337 337
338 const to = overrideTo || videoObject.to 338 const to = overrideTo || videoObject.to
339 const videoData = await videoActivityObjectToDBAttributes(channel, videoObject, to) 339 const videoData = videoActivityObjectToDBAttributes(channel, videoObject, to)
340 video.name = videoData.name 340 video.name = videoData.name
341 video.uuid = videoData.uuid 341 video.uuid = videoData.uuid
342 video.url = videoData.url 342 video.url = videoData.url
diff --git a/server/lib/stat-manager.ts b/server/lib/stat-manager.ts
index 09ba208bd..5d703f610 100644
--- a/server/lib/stat-manager.ts
+++ b/server/lib/stat-manager.ts
@@ -8,6 +8,7 @@ import { VideoCommentModel } from '@server/models/video/video-comment'
8import { VideoFileModel } from '@server/models/video/video-file' 8import { VideoFileModel } from '@server/models/video/video-file'
9import { VideoPlaylistModel } from '@server/models/video/video-playlist' 9import { VideoPlaylistModel } from '@server/models/video/video-playlist'
10import { ActivityType, ServerStats, VideoRedundancyStrategyWithManual } from '@shared/models' 10import { ActivityType, ServerStats, VideoRedundancyStrategyWithManual } from '@shared/models'
11import * as Bluebird from 'bluebird'
11 12
12class StatsManager { 13class StatsManager {
13 14
@@ -106,12 +107,10 @@ class StatsManager {
106 107
107 strategies.push({ strategy: 'manual', size: null }) 108 strategies.push({ strategy: 'manual', size: null })
108 109
109 return Promise.all( 110 return Bluebird.mapSeries(strategies, r => {
110 strategies.map(r => { 111 return VideoRedundancyModel.getStats(r.strategy)
111 return VideoRedundancyModel.getStats(r.strategy) 112 .then(stats => Object.assign(stats, { strategy: r.strategy, totalSize: r.size }))
112 .then(stats => Object.assign(stats, { strategy: r.strategy, totalSize: r.size })) 113 })
113 })
114 )
115 } 114 }
116 115
117 private buildAPPerType () { 116 private buildAPPerType () {