mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-28 03:34:46 +03:00
Make Password Reset case sensitive
This commit is contained in:
@@ -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");
|
||||
|
||||
Reference in New Issue
Block a user