diff options
Diffstat (limited to 'server/lib/oauth-model.ts')
-rw-r--r-- | server/lib/oauth-model.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/lib/oauth-model.ts b/server/lib/oauth-model.ts index dbcba897a..e5ea4636e 100644 --- a/server/lib/oauth-model.ts +++ b/server/lib/oauth-model.ts | |||
@@ -123,7 +123,7 @@ async function getUser (usernameOrEmail?: string, password?: string) { | |||
123 | 123 | ||
124 | const user = await UserModel.loadByUsernameOrEmail(usernameOrEmail) | 124 | const user = await UserModel.loadByUsernameOrEmail(usernameOrEmail) |
125 | // If we don't find the user, or if the user belongs to a plugin | 125 | // If we don't find the user, or if the user belongs to a plugin |
126 | if (!user || user.pluginAuth !== null) return null | 126 | if (!user || user.pluginAuth !== null || !password) return null |
127 | 127 | ||
128 | const passwordMatch = await user.isPasswordMatch(password) | 128 | const passwordMatch = await user.isPasswordMatch(password) |
129 | if (passwordMatch !== true) return null | 129 | if (passwordMatch !== true) return null |