diff options
author | Chocobozzz <me@florianbigard.com> | 2018-09-19 16:12:07 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2018-09-19 16:12:07 +0200 |
commit | d9bdd007d7a1368d2a13127ecb5c0a81a18a8c04 (patch) | |
tree | 67cb4d2774dd7127499b882a5aa5069ea6fa86b2 /server/controllers/api | |
parent | 12ba460e9ebf4951f9c1caee8822a8ca1523563f (diff) | |
download | PeerTube-d9bdd007d7a1368d2a13127ecb5c0a81a18a8c04.tar.gz PeerTube-d9bdd007d7a1368d2a13127ecb5c0a81a18a8c04.tar.zst PeerTube-d9bdd007d7a1368d2a13127ecb5c0a81a18a8c04.zip |
Put config redundancy strategies in "strategies" subkey
Diffstat (limited to 'server/controllers/api')
-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 | }) |