From 15f96e8776afbc1eabaa1cf76c62a67f9df452fd Mon Sep 17 00:00:00 2001 From: 0xsysr3ll <0xsysr3ll@pm.me> Date: Sun, 22 Feb 2026 23:24:02 +0100 Subject: [PATCH] fix: quote columns --- server/routes/settings/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/routes/settings/index.ts b/server/routes/settings/index.ts index 1b25f4d16..7c4abad38 100644 --- a/server/routes/settings/index.ts +++ b/server/routes/settings/index.ts @@ -544,7 +544,7 @@ settingsRoutes.post( .set({ userType: useEmby ? UserType.EMBY : UserType.JELLYFIN, }) - .where('"user".jellyfinUserId IS NOT NULL') + .where('"user"."jellyfinUserId" IS NOT NULL') .execute(); await getRepository(Media) .createQueryBuilder()