diff --git a/server/routes/auth.ts b/server/routes/auth.ts index c3d9d0f61..9ec9ff990 100644 --- a/server/routes/auth.ts +++ b/server/routes/auth.ts @@ -345,11 +345,11 @@ authRoutes.post('/jellyfin', async (req, res, next) => { user.username = ''; } - // If JELLYFIN_TYPE is set to 'emby' then set mediaServerType to EMBY - if (process.env.JELLYFIN_TYPE === 'emby') { - settings.main.mediaServerType = MediaServerType.EMBY; - settings.save(); - } + // TODO: If JELLYFIN_TYPE is set to 'emby' then set mediaServerType to EMBY + // if (process.env.JELLYFIN_TYPE === 'emby') { + // settings.main.mediaServerType = MediaServerType.EMBY; + // settings.save(); + // } await userRepository.save(user); } else if (!settings.main.newPlexLogin) {