Apply minor suggestions from code review

Co-Authored-By: LogicalPhallacy <44458166+LogicalPhallacy@users.noreply.github.com>
This commit is contained in:
LogicalPhallacy 2019-03-25 21:40:10 -07:00 committed by GitHub
parent 86772bd7bd
commit 740c95d557
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 113 additions and 112 deletions

View file

@ -70,6 +70,7 @@ namespace Emby.Server.Implementations.Library
UsersReset = usersreset.ToArray()
};
}
throw new System.NotImplementedException();
}
@ -92,7 +93,7 @@ namespace Emby.Server.Implementations.Library
}
catch (Exception e)
{
throw new Exception($"Error serializing or writing password reset for {user.Name} to location:{filePath}", e);
throw new Exception($"Error serializing or writing password reset for {user.Name} to location: {filePath}", e);
}
return new ForgotPasswordResult

View file

@ -373,7 +373,7 @@ namespace Emby.Server.Implementations.Library
private IPasswordResetProvider GetPasswordResetProvider(User user)
{
return GetPasswordResetProviders(user).First();
return GetPasswordResetProviders(user)[0];
}
private IAuthenticationProvider[] GetAuthenticationProviders(User user)