mirror of
https://github.com/spacebarchat/server.git
synced 2026-07-28 20:39:22 +00:00
🐛 fix In() query
This commit is contained in:
@@ -137,7 +137,7 @@ router.post("/", route({ body: "RegisterSchema" }), async (req: Request, res: Re
|
||||
|
||||
if (!register.allowMultipleAccounts) {
|
||||
// TODO: check if fingerprint was eligible generated
|
||||
const exists = await User.findOne({ where: { fingerprints: In(fingerprint) } });
|
||||
const exists = await User.findOne({ where: { fingerprints: fingerprint } });
|
||||
|
||||
if (exists) {
|
||||
throw FieldErrors({
|
||||
|
||||
@@ -132,7 +132,7 @@ router.patch("/", route({ body: "RolePositionUpdateSchema" }), async (req: Reque
|
||||
|
||||
await Promise.all(body.map(async (x) => Role.update({ guild_id, id: x.id }, { position: x.position })));
|
||||
|
||||
const roles = await Role.find({ guild_id, id: In(body.map((x) => x.id)) });
|
||||
const roles = await Role.find({ where: body.map((x) => ({ id: x.id, guild_id })) });
|
||||
|
||||
await Promise.all(
|
||||
roles.map((x) =>
|
||||
|
||||
Reference in New Issue
Block a user