diff options
Diffstat (limited to 'server/helpers')
-rw-r--r-- | server/helpers/peertube-crypto.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/server/helpers/peertube-crypto.ts b/server/helpers/peertube-crypto.ts index 8aca50900..dcf47ce76 100644 --- a/server/helpers/peertube-crypto.ts +++ b/server/helpers/peertube-crypto.ts | |||
@@ -24,6 +24,8 @@ function createPrivateAndPublicKeys () { | |||
24 | // User password checks | 24 | // User password checks |
25 | 25 | ||
26 | function comparePassword (plainPassword: string, hashPassword: string) { | 26 | function comparePassword (plainPassword: string, hashPassword: string) { |
27 | if (!plainPassword) return Promise.resolve(false) | ||
28 | |||
27 | return bcryptComparePromise(plainPassword, hashPassword) | 29 | return bcryptComparePromise(plainPassword, hashPassword) |
28 | } | 30 | } |
29 | 31 | ||