Remove unnecessary null checks in some places

Related to https://github.com/jellyfin/jellyfin/issues/2149
This commit is contained in:
KonH
2020-10-03 22:03:23 +07:00
parent c0be770681
commit 211c9cd608
3 changed files with 3 additions and 6 deletions

View File

@@ -799,7 +799,7 @@ namespace Jellyfin.Server.Implementations.Users
private IList<IPasswordResetProvider> GetPasswordResetProviders(User user)
{
var passwordResetProviderId = user?.PasswordResetProviderId;
var passwordResetProviderId = user.PasswordResetProviderId;
var providers = _passwordResetProviders.Where(i => i.IsEnabled).ToArray();
if (!string.IsNullOrEmpty(passwordResetProviderId))