Merge pull request #8377 from Bond-009/resetcase

Make Password Reset case sensitive
pull/8379/head
Claus Vium 2 years ago committed by GitHub
commit 38b7d0222f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -67,7 +67,7 @@ namespace Jellyfin.Server.Implementations.Users
else if (string.Equals(
spr.Pin.Replace("-", string.Empty, StringComparison.Ordinal),
pin.Replace("-", string.Empty, StringComparison.Ordinal),
StringComparison.OrdinalIgnoreCase))
StringComparison.Ordinal))
{
var resetUser = userManager.GetUserByName(spr.UserName)
?? throw new ResourceNotFoundException($"User with a username of {spr.UserName} not found");

Loading…
Cancel
Save