Fixed invalid credential handling.

This commit is contained in:
2024-03-17 05:51:18 +01:00
parent 8a6e57365c
commit 6f27e0a7dd
2 changed files with 6 additions and 10 deletions

View File

@@ -46,14 +46,14 @@ export async function fetchUser(userId, options = {}) {
.groupBy('users.id', 'users_roles.role')
.first();
if (!user) {
throw new HttpError(`User '${userId}' not found`, 404);
}
const stashes = await knex('stashes')
.where('user_id', user.id)
.leftJoin('stashes_meta', 'stashes_meta.stash_id', 'stashes.id');
if (!user) {
throw HttpError(`User '${userId}' not found`, 404);
}
if (options.raw) {
return { user, stashes };
}