fix(auth): case-sensitive logins not updating authtokens (#778)
This commit is contained in:
@@ -325,7 +325,7 @@ authRoutes.post('/jellyfin', async (req, res, next) => {
|
|||||||
await userRepository.save(user);
|
await userRepository.save(user);
|
||||||
}
|
}
|
||||||
// User already exists, let's update their information
|
// User already exists, let's update their information
|
||||||
else if (body.username === user?.jellyfinUsername) {
|
else if (account.User.Id === user?.jellyfinUserId) {
|
||||||
logger.info(
|
logger.info(
|
||||||
`Found matching ${
|
`Found matching ${
|
||||||
settings.main.mediaServerType === MediaServerType.JELLYFIN
|
settings.main.mediaServerType === MediaServerType.JELLYFIN
|
||||||
|
|||||||
Reference in New Issue
Block a user