Allow changing capitalization of usernames

This commit is contained in:
Bond_009 2020-01-31 22:56:24 +01:00
parent cd13f718fb
commit acc1846e3e

View file

@ -667,7 +667,7 @@ namespace Emby.Server.Implementations.Library
throw new ArgumentException("Invalid username", nameof(newName)); throw new ArgumentException("Invalid username", nameof(newName));
} }
if (user.Name.Equals(newName, StringComparison.OrdinalIgnoreCase)) if (user.Name.Equals(newName, StringComparison.Ordinal))
{ {
throw new ArgumentException("The new and old names must be different."); throw new ArgumentException("The new and old names must be different.");
} }