From 6bf4637a03c6d251cf43542788de7d3d02374077 Mon Sep 17 00:00:00 2001 From: Madeline <46743919+MaddyUnderStars@users.noreply.github.com> Date: Wed, 4 Oct 2023 23:48:00 +1100 Subject: fucking postgres --- src/api/routes/guilds/#guild_id/channels.ts | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'src/api') diff --git a/src/api/routes/guilds/#guild_id/channels.ts b/src/api/routes/guilds/#guild_id/channels.ts index 671d07ea..68208fee 100644 --- a/src/api/routes/guilds/#guild_id/channels.ts +++ b/src/api/routes/guilds/#guild_id/channels.ts @@ -98,11 +98,11 @@ router.patch( const guild = await Guild.findOneOrFail({ where: { id: guild_id }, - select: { channelOrdering: true }, + select: { channel_ordering: true }, }); // The channels not listed for this query - const notMentioned = guild.channelOrdering.filter( + const notMentioned = guild.channel_ordering.filter( (x) => !body.find((c) => c.id == x), ); @@ -159,7 +159,10 @@ router.patch( }), ); - await Guild.update({ id: guild_id }, { channelOrdering: notMentioned }); + await Guild.update( + { id: guild_id }, + { channel_ordering: notMentioned }, + ); return res.sendStatus(204); }, -- cgit 1.5.1