diff options
Diffstat (limited to 'server/controllers')
-rw-r--r-- | server/controllers/api/server/stats.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/controllers/api/server/stats.ts b/server/controllers/api/server/stats.ts index bb6311e81..85803f69e 100644 --- a/server/controllers/api/server/stats.ts +++ b/server/controllers/api/server/stats.ts | |||
@@ -23,7 +23,7 @@ async function getStats (req: express.Request, res: express.Response, next: expr | |||
23 | const { totalInstanceFollowers, totalInstanceFollowing } = await ActorFollowModel.getStats() | 23 | const { totalInstanceFollowers, totalInstanceFollowing } = await ActorFollowModel.getStats() |
24 | 24 | ||
25 | const videosRedundancyStats = await Promise.all( | 25 | const videosRedundancyStats = await Promise.all( |
26 | CONFIG.REDUNDANCY.VIDEOS.map(r => { | 26 | CONFIG.REDUNDANCY.VIDEOS.STRATEGIES.map(r => { |
27 | return VideoRedundancyModel.getStats(r.strategy) | 27 | return VideoRedundancyModel.getStats(r.strategy) |
28 | .then(stats => Object.assign(stats, { strategy: r.strategy, totalSize: r.size })) | 28 | .then(stats => Object.assign(stats, { strategy: r.strategy, totalSize: r.size })) |
29 | }) | 29 | }) |