diff options
author | Chocobozzz <me@florianbigard.com> | 2018-01-17 10:32:03 +0100 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2018-01-17 10:41:27 +0100 |
commit | fd206f0b2d7e5c8e00e2817266d90ec54f79e1da (patch) | |
tree | 86b096cf2abd7eb49b892de1c9be855f45a41a9c /server/helpers | |
parent | 9581cabc596acb18c0ad86bcf3a07c2b45e8e47e (diff) | |
download | PeerTube-fd206f0b2d7e5c8e00e2817266d90ec54f79e1da.tar.gz PeerTube-fd206f0b2d7e5c8e00e2817266d90ec54f79e1da.tar.zst PeerTube-fd206f0b2d7e5c8e00e2817266d90ec54f79e1da.zip |
Add ability to update some configuration keys
Diffstat (limited to 'server/helpers')
-rw-r--r-- | server/helpers/utils.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/helpers/utils.ts b/server/helpers/utils.ts index b61d6e3fa..79c3b5858 100644 --- a/server/helpers/utils.ts +++ b/server/helpers/utils.ts | |||
@@ -104,7 +104,7 @@ function computeResolutionsToTranscode (videoFileHeight: number) { | |||
104 | ] | 104 | ] |
105 | 105 | ||
106 | for (const resolution of resolutions) { | 106 | for (const resolution of resolutions) { |
107 | if (configResolutions[resolution.toString()] === true && videoFileHeight > resolution) { | 107 | if (configResolutions[resolution + 'p'] === true && videoFileHeight > resolution) { |
108 | resolutionsEnabled.push(resolution) | 108 | resolutionsEnabled.push(resolution) |
109 | } | 109 | } |
110 | } | 110 | } |