aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/initializers/checker-after-init.ts
diff options
context:
space:
mode:
Diffstat (limited to 'server/initializers/checker-after-init.ts')
-rw-r--r--server/initializers/checker-after-init.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/initializers/checker-after-init.ts b/server/initializers/checker-after-init.ts
index 68dea909d..21bc5911c 100644
--- a/server/initializers/checker-after-init.ts
+++ b/server/initializers/checker-after-init.ts
@@ -199,7 +199,7 @@ function checkStorageConfig () {
199function checkTranscodingConfig () { 199function checkTranscodingConfig () {
200 if (CONFIG.TRANSCODING.ENABLED) { 200 if (CONFIG.TRANSCODING.ENABLED) {
201 if (CONFIG.TRANSCODING.WEBTORRENT.ENABLED === false && CONFIG.TRANSCODING.HLS.ENABLED === false) { 201 if (CONFIG.TRANSCODING.WEBTORRENT.ENABLED === false && CONFIG.TRANSCODING.HLS.ENABLED === false) {
202 throw new Error('You need to enable at least WebTorrent transcoding or HLS transcoding.') 202 throw new Error('You need to enable at least Web Video transcoding or HLS transcoding.')
203 } 203 }
204 204
205 if (CONFIG.TRANSCODING.CONCURRENCY <= 0) { 205 if (CONFIG.TRANSCODING.CONCURRENCY <= 0) {