diff options
Diffstat (limited to 'server/tools/import-videos.ts')
-rw-r--r-- | server/tools/import-videos.ts | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/server/tools/import-videos.ts b/server/tools/import-videos.ts index b0f7f7d4f..678503a3e 100644 --- a/server/tools/import-videos.ts +++ b/server/tools/import-videos.ts | |||
@@ -46,7 +46,7 @@ const processOptions = { | |||
46 | } | 46 | } |
47 | 47 | ||
48 | async function promptPassword () { | 48 | async function promptPassword () { |
49 | return new Promise ( res => { | 49 | return new Promise ( (res, rej) => { |
50 | prompt.start() | 50 | prompt.start() |
51 | const schema = { | 51 | const schema = { |
52 | properties: { | 52 | properties: { |
@@ -58,8 +58,7 @@ async function promptPassword () { | |||
58 | } | 58 | } |
59 | prompt.get(schema, function (err, result) { | 59 | prompt.get(schema, function (err, result) { |
60 | if (err) { | 60 | if (err) { |
61 | console.log(err.message) | 61 | return rej(err); |
62 | return res(); | ||
63 | } | 62 | } |
64 | return res(result.password) | 63 | return res(result.password) |
65 | }) | 64 | }) |