diff options
Diffstat (limited to 'server.js')
-rw-r--r-- | server.js | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -29,6 +29,11 @@ const missed = checker.checkMissedConfig() | |||
29 | if (missed.length !== 0) { | 29 | if (missed.length !== 0) { |
30 | throw new Error('Miss some configurations keys : ' + missed) | 30 | throw new Error('Miss some configurations keys : ' + missed) |
31 | } | 31 | } |
32 | checker.checkFFmpeg(function (err) { | ||
33 | if (err) { | ||
34 | throw err | ||
35 | } | ||
36 | }) | ||
32 | 37 | ||
33 | const errorMessage = checker.checkConfig() | 38 | const errorMessage = checker.checkConfig() |
34 | if (errorMessage !== null) { | 39 | if (errorMessage !== null) { |